mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-06 14:20:42 +02:00
is-path-in-cwd 
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