@stryke/path
Version:
A package containing various utilities that expand the functionality of NodeJs's built-in `path` module
12 lines • 419 B
text/typescript
//#region src/resolve-parent-path.d.ts
/**
* Resolve the parent path of the provided path.
*
* @param path - The path to resolve.
* @param count - The number of parent directories to traverse.
* @returns The parent path of the provided path.
*/
declare const resolveParentPath: (path: string, count?: number) => string;
//#endregion
export { resolveParentPath };
//# sourceMappingURL=resolve-parent-path.d.cts.map