UNPKG

@stryke/path

Version:

A package containing various utilities that expand the functionality of NodeJs's built-in `path` module

22 lines 462 B
//#region src/delimiter.d.ts /** * The platform-specific file delimiter. * * Equals to `";"` in windows and `":"` in all other platforms. */ declare const delimiter: ";" | ":"; declare const posix: { posix: undefined; win32: undefined; } & { delimiter: ";" | ":"; }; declare const win32: { posix: undefined; win32: undefined; } & { delimiter: ";" | ":"; }; //#endregion export { delimiter, posix, win32 }; //# sourceMappingURL=delimiter.d.cts.map