suochencheng 7cf50435fd 1 6 роки тому
..
index.js 7cf50435fd 1 6 роки тому
license 7cf50435fd 1 6 роки тому
package.json 7cf50435fd 1 6 роки тому
readme.md 7cf50435fd 1 6 роки тому

readme.md

is-path-in-cwd Build Status

Check if a path is in the current working directory

Install

$ npm install --save is-path-in-cwd

Usage

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

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

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

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

License

MIT © Sindre Sorhus