refactor(server): canonicalize service API (#31049)
This commit is contained in:
parent
53ff1b57c9
commit
fe0c4f8c74
388 changed files with 7075 additions and 4064 deletions
12
packages/tui/src/util/path.ts
Normal file
12
packages/tui/src/util/path.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue