APPLE 40fd72a105 wesmiler 抢表商城 3 лет назад
..
index.d.ts 40fd72a105 wesmiler 抢表商城 3 лет назад
index.js 40fd72a105 wesmiler 抢表商城 3 лет назад
license 40fd72a105 wesmiler 抢表商城 3 лет назад
package.json 40fd72a105 wesmiler 抢表商城 3 лет назад
readme.md 40fd72a105 wesmiler 抢表商城 3 лет назад

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