File size: 346 Bytes
0dbc9de | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import { realpathSync } from "node:fs"
import { win32 } from "node:path"
export function normalizePath(input: string, platform: string) {
if (platform !== "win32") return input
const resolved = win32.normalize(win32.resolve(input.replaceAll("/", "\\")))
try {
return realpathSync.native(resolved)
} catch {
return resolved
}
}
|