UNPKG

@stryke/path

Version:

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

11 lines 346 B
//#region src/is-root-dir.d.ts /** * Check if the directory is the current system's root directory. * * @param dir - The directory to check. * @returns Returns true if the directory is the root directory. */ declare function isSystemRoot(dir: string): boolean; //#endregion export { isSystemRoot }; //# sourceMappingURL=is-root-dir.d.mts.map