Normalize a path to use forward slashes so that generated files * are portable across operating systems (e.g. build on Windows, * deploy on Linux).
(p: string)
| 21 | * are portable across operating systems (e.g. build on Windows, |
| 22 | * deploy on Linux). */ |
| 23 | function toPosix(p: string): string { |
| 24 | return p.replaceAll(WINDOWS_SEPARATOR, "/"); |
| 25 | } |
| 26 | |
| 27 | export interface MemoryFile { |
| 28 | hash: string | null; |
no outgoing calls
no test coverage detected