mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 17:57:05 +00:00
![]() Update ESLint to 4.1.0. This fixes a bug that previously prevented us from using the new and stricter indentation checking. Refs: https://github.com/eslint/eslint/issues/8721 PR-URL: https://github.com/nodejs/node/pull/13895 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> |
||
---|---|---|
.. | ||
index.js | ||
package.json | ||
readme.md |
is-path-inside 
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