tree: d8a121dfb378f50cc4c53e4e84d8b59215a57270 [path history] [tgz]
  1. index.js
  2. license
  3. package.json
  4. readme.md
node_modules/is-path-inside/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/c', 'a/b');
//=> true

isPathInside('a/b/c', 'x/y');
//=> false

isPathInside('a/b/c', 'a/b/c');
//=> false

isPathInside('/Users/sindresorhus/dev/unicorn', '/Users/sindresorhus');
//=> true

License

MIT © Sindre Sorhus