(input: string)
| 3 | import { AbsolutePath } from "../schema" |
| 4 | |
| 5 | function storagePath(input: string) { |
| 6 | if (process.platform !== "win32") return input |
| 7 | return input.replaceAll("\\", "/") |
| 8 | } |
| 9 | |
| 10 | function isWindowsStoragePath(input: string) { |
| 11 | return /^[A-Za-z]:\//.test(input) || input.startsWith("//") |
no outgoing calls
no test coverage detected