(path: string)
| 38 | ]; |
| 39 | |
| 40 | function normalizeRelativePath(path: string): string { |
| 41 | return path.replace(/\\/g, "/").replace(/^\/+/, ""); |
| 42 | } |
| 43 | |
| 44 | function shouldTrack(path: string): boolean { |
| 45 | if (!path) return false; |
no outgoing calls
no test coverage detected