(id: string)
| 230 | const VOLUME_RE = /^[A-Z]:/i |
| 231 | |
| 232 | export function normalizePath(id: string): string { |
| 233 | return path.posix.normalize(isWindows ? slash(id) : id) |
| 234 | } |
| 235 | |
| 236 | export function fsPathFromId(id: string): string { |
| 237 | const fsPath = normalizePath( |