Check if a path is the current working directory
npm install is-path-cwd> Check if a path is the current working directory
``sh`
npm install is-path-cwd
`js
import isPathCwd from 'is-path-cwd';
isPathCwd(process.cwd());
//=> true
isPathCwd('unicorn');
//=> false
``