> For the complete documentation index, see [llms.txt](https://bryan-guner.gitbook.io/my-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bryan-guner.gitbook.io/my-docs/redux/repos/examples/real-world/node_modules/is-path-cwd.md).

# is-path-cwd

> Check if a path is the [current working directory](https://en.wikipedia.org/wiki/Working_directory)

## Install

```
$ npm install is-path-cwd
```

## Usage

```js
const isPathCwd = require('is-path-cwd');

isPathCwd(process.cwd());
//=> true

isPathCwd('unicorn');
//=> false
```

## License

MIT © [Sindre Sorhus](https://sindresorhus.com)
