react-kiwi-dropdown
Version:
| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha
29 lines (16 loc) • 474 B
Markdown
> Check if a path is [CWD](http://en.wikipedia.org/wiki/Working_directory)
```sh
$ npm install --save is-path-cwd
```
```js
var isPathCwd = require('is-path-cwd');
isPathCwd(process.cwd());
//=> true
isPathCwd('unicorn');
//=> false
```
MIT © [Sindre Sorhus](http://sindresorhus.com)