suochencheng 7cf50435fd 1 6 yıl önce
..
index.js 7cf50435fd 1 6 yıl önce
license 7cf50435fd 1 6 yıl önce
package.json 7cf50435fd 1 6 yıl önce
readme.md 7cf50435fd 1 6 yıl önce

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