(p: string)
| 51 | |
| 52 | // Strip null bytes from paths (defensive fix for CI environment issues) |
| 53 | function sanitizePath(p: string): string { |
| 54 | return p.replace(/\0/g, "") |
| 55 | } |
| 56 | |
| 57 | function exists(dir: string) { |
| 58 | return fs |
no outgoing calls
no test coverage detected