(stdout: string)
| 235 | }) |
| 236 | |
| 237 | function relative(stdout: string) { |
| 238 | return stdout.replace(new RegExp(slash(process.cwd()), 'gi'), '<root>') |
| 239 | } |
| 240 | |
| 241 | function slash(stdout: string) { |
| 242 | return stdout.replace(/\\/g, '/') |
no test coverage detected