yingzi 560ebdb4b8 修改 2 년 전
..
node_modules 560ebdb4b8 修改 2 년 전
index.d.ts a6e36702ec 2023-3-1 2 년 전
index.js a6e36702ec 2023-3-1 2 년 전
license a6e36702ec 2023-3-1 2 년 전
package.json a6e36702ec 2023-3-1 2 년 전
readme.md a6e36702ec 2023-3-1 2 년 전

readme.md

is-path-in-cwd Build Status

Check if a path is in the current working directory

Install

$ npm install is-path-in-cwd

Usage

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

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

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

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

License

MIT © Sindre Sorhus