Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
share
/
nodejs
/
is-path-cwd
📤 Upload
📝 New File
📁 New Folder
Close
Editing: index.d.ts
/** Check if a path is the [current working directory](https://en.wikipedia.org/wiki/Working_directory). @example ``` import isPathCwd = require('is-path-cwd'); isPathCwd(process.cwd()); //=> true isPathCwd('unicorn'); //=> false ``` */ declare function isPathCwd(path: string): boolean; export = isPathCwd;
Save
Cancel