rnx-kit/packages/third-party-notices/test/pathHelper.ts

8 строки
218 B
TypeScript

import os from "os";
export const absolutePathRoot = os.platform() === "win32" ? "o:\\" : "/";
export function osSpecificPath(p: string): string {
return os.platform() === "win32" ? p : p.replace(/[\\]+/g, "/");
}