summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/is-path-inside/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/node_modules/is-path-inside/readme.md')
-rw-r--r--deps/node/deps/npm/node_modules/is-path-inside/readme.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/deps/node/deps/npm/node_modules/is-path-inside/readme.md b/deps/node/deps/npm/node_modules/is-path-inside/readme.md
deleted file mode 100644
index cc5f5162..00000000
--- a/deps/node/deps/npm/node_modules/is-path-inside/readme.md
+++ /dev/null
@@ -1,34 +0,0 @@
-# is-path-inside [![Build Status](https://travis-ci.org/sindresorhus/is-path-inside.svg?branch=master)](https://travis-ci.org/sindresorhus/is-path-inside)
-
-> Check if a path is inside another path
-
-
-## Install
-
-```
-$ npm install --save is-path-inside
-```
-
-
-## Usage
-
-```js
-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](http://sindresorhus.com)