mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-19 19:12:58 +00:00
25 lines
824 B
TypeScript
25 lines
824 B
TypeScript
export type PathKey = string & { _brand: "PathKey" }
|
|
|
|
const isDrive = (value: string) => {
|
|
if (value.length !== 2) return false
|
|
const code = value.charCodeAt(0)
|
|
return value[1] === ":" && ((code >= 65 && code <= 90) || (code >= 97 && code <= 122))
|
|
}
|
|
|
|
const trimTrailingSlashes = (value: string) => {
|
|
for (let i = value.length - 1; i >= 0; i--) {
|
|
if (value[i] !== "/") return value.slice(0, i + 1)
|
|
}
|
|
return ""
|
|
}
|
|
|
|
const isWindowsPath = (value: string) => value[1] === ":" || value.startsWith("\\\\")
|
|
|
|
export const pathKey = (path: string) => {
|
|
const value = isWindowsPath(path) ? path.replaceAll("\\", "/") : path
|
|
const trimmed = trimTrailingSlashes(value)
|
|
if (!trimmed && value.startsWith("/")) return "/" as PathKey
|
|
if (isDrive(trimmed)) return `${trimmed}/` as PathKey
|
|
return trimmed as PathKey
|
|
}
|