|
|
před 8 roky | |
|---|---|---|
| .. | ||
| index.js | před 8 roky | |
| package.json | před 8 roky | |
| readme.md | před 8 roky | |
Check if a path is inside another path
$ npm install --save is-path-inside
var isPathInside = require('is-path-inside');
isPathInside('a/b', 'a/b/c');
//=> true
isPathInside('x/y', 'a/b/c');
//=> false
isPathInside('a/b/c', 'a/b/c');
//=> false
MIT © Sindre Sorhus