Irina Glushko 2389e7160b HW1 done | vor 3 Jahren | |
---|---|---|
.. | ||
index.d.ts | vor 3 Jahren | |
index.js | vor 3 Jahren | |
license | vor 3 Jahren | |
package.json | vor 3 Jahren | |
readme.md | vor 3 Jahren |
Check if a path is in the current working directory
$ npm install is-path-in-cwd
const isPathInCwd = require('is-path-in-cwd');
isPathInCwd('unicorn');
//=> true
isPathInCwd('../rainbow');
//=> false
isPathInCwd('.');
//=> false
MIT © Sindre Sorhus