Zhouyiping 5a7c95461a first commit vor 3 Tagen
..
index.d.ts 5a7c95461a first commit vor 3 Tagen
index.js 5a7c95461a first commit vor 3 Tagen
license 5a7c95461a first commit vor 3 Tagen
package.json 5a7c95461a first commit vor 3 Tagen
readme.md 5a7c95461a first commit vor 3 Tagen

readme.md

is-path-in-cwd Build Status

Check if a path is in the current working directory

Install

$ npm install is-path-in-cwd

Usage

const isPathInCwd = require('is-path-in-cwd');

isPathInCwd('unicorn');
//=> true

isPathInCwd('../rainbow');
//=> false

isPathInCwd('.');
//=> false

License

MIT © Sindre Sorhus