xusl 2be7077787 初始化 пре 1 година
..
index.d.ts 2be7077787 初始化 пре 1 година
index.js 2be7077787 初始化 пре 1 година
license 2be7077787 初始化 пре 1 година
package.json 2be7077787 初始化 пре 1 година
readme.md 2be7077787 初始化 пре 1 година

readme.md

is-path-inside Build Status

Check if a path is inside another path

Install

$ npm install is-path-inside

Usage

const 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