HOME


sh-3ll 1.0
DIR:/proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/is-path-cwd/
Upload File :
Current File : //proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/is-path-cwd/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;