gaojunlong 0b996e41aa 2025-03-04-1 2 miesięcy temu
..
index.d.ts 0b996e41aa 2025-03-04-1 2 miesięcy temu
index.js 0b996e41aa 2025-03-04-1 2 miesięcy temu
license 0b996e41aa 2025-03-04-1 2 miesięcy temu
package.json 0b996e41aa 2025-03-04-1 2 miesięcy temu
readme.md 0b996e41aa 2025-03-04-1 2 miesięcy temu

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