(input: string)
| 20 | } |
| 21 | |
| 22 | function toPlatform(input: string) { |
| 23 | if (process.platform !== "win32" || !isWindowsStoragePath(input)) return input |
| 24 | return input.replaceAll("/", "\\") |
| 25 | } |
| 26 | |
| 27 | export const absoluteColumn = customType<{ |
| 28 | data: AbsolutePath |
no test coverage detected