jayfella c97084e992 Initial Commit hace 5 años
..
index.js c97084e992 Initial Commit hace 5 años
license c97084e992 Initial Commit hace 5 años
package.json c97084e992 Initial Commit hace 5 años
readme.md c97084e992 Initial Commit hace 5 años

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