1
0
Fork 0
arangodb/js/node/node_modules/is-path-inside
Andreas Streichardt 8a286a30d9 We are now using semistandard and eslint 2016-06-29 18:27:02 +02:00
..
index.js We are now using semistandard and eslint 2016-06-29 18:27:02 +02:00
package.json We are now using semistandard and eslint 2016-06-29 18:27:02 +02:00
readme.md We are now using semistandard and eslint 2016-06-29 18:27:02 +02:00

readme.md

is-path-inside Build Status

Check if a path is inside another path

Install

$ npm install --save is-path-inside

Usage

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

License

MIT © Sindre Sorhus