UNPKG

@flex-development/pathe

Version:

Universal drop-in replacement for node:path

18 lines (17 loc) 281 B
/** * @file cwd * @module pathe/lib/cwd */ /** * Get the path to the current working directory. * * @category * utils * * @this {void} * * @return {string} * Absolute path to current working directory */ declare function cwd(this: void): string; export default cwd;