@stryke/path
Version:
A package containing various utilities that expand the functionality of NodeJs's built-in `path` module
13 lines • 346 B
text/typescript
//#region src/cwd.d.ts
/**
* Get the current working directory.
*
* @remarks
* This function attempts to retrieve the current working directory using `process.cwd()`.
*
* @returns The current working directory or '/' if it cannot be determined
*/
declare function cwd(): any;
//#endregion
export { cwd };
//# sourceMappingURL=cwd.d.cts.map