utils.ts 226 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3 4 5 6 7
import os from 'os'
import path from 'path'
import slash from 'slash'
const isWindows = os.platform() === 'win32'
export function normalizePath(id: string): string {
  return path.posix.normalize(isWindows ? slash(id) : id)
}