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

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