(path: string)
| 49 | } |
| 50 | |
| 51 | export function normalizeWorkspacePath(path: string): string { |
| 52 | return path.replace(/\\/g, "/").replace(/^\/+/, ""); |
| 53 | } |
| 54 | |
| 55 | function prefixRepoPath(label: string, filePath: string): string { |
| 56 | if (filePath === "/dev/null") return filePath; |
no test coverage detected