vlad 6f123ff03e 18.07 | 6 anos atrás | |
---|---|---|
.. | ||
index.js | 6 anos atrás | |
license | 6 anos atrás | |
package.json | 6 anos atrás | |
readme.md | 6 anos atrás |
Check if a path is in the current working directory
$ npm install --save is-path-in-cwd
var isPathInCwd = require('is-path-in-cwd');
isPathInCwd('unicorn');
//=> true
isPathInCwd('../rainbow');
//=> false
isPathInCwd('.');
//=> false
MIT © Sindre Sorhus