aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-path-inside
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
commitabd94a7f5a50f43c797a11b53549ae48fff667c3 (patch)
treeab8ed457f65cdd72e13e0571d2975729428f1551 /node_modules/is-path-inside
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/is-path-inside')
-rw-r--r--node_modules/is-path-inside/index.js14
-rw-r--r--node_modules/is-path-inside/package.json98
-rw-r--r--node_modules/is-path-inside/readme.md31
3 files changed, 143 insertions, 0 deletions
diff --git a/node_modules/is-path-inside/index.js b/node_modules/is-path-inside/index.js
new file mode 100644
index 000000000..0a4d2fd1e
--- /dev/null
+++ b/node_modules/is-path-inside/index.js
@@ -0,0 +1,14 @@
+'use strict';
+var path = require('path');
+var pathIsInside = require('path-is-inside');
+
+module.exports = function (a, b) {
+ a = path.resolve(a);
+ b = path.resolve(b);
+
+ if (a === b) {
+ return false;
+ }
+
+ return pathIsInside(a, b);
+};
diff --git a/node_modules/is-path-inside/package.json b/node_modules/is-path-inside/package.json
new file mode 100644
index 000000000..f07281259
--- /dev/null
+++ b/node_modules/is-path-inside/package.json
@@ -0,0 +1,98 @@
+{
+ "_args": [
+ [
+ {
+ "raw": "is-path-inside@^1.0.0",
+ "scope": null,
+ "escapedName": "is-path-inside",
+ "name": "is-path-inside",
+ "rawSpec": "^1.0.0",
+ "spec": ">=1.0.0 <2.0.0",
+ "type": "range"
+ },
+ "/home/dold/repos/taler/wallet-webex/node_modules/is-path-in-cwd"
+ ]
+ ],
+ "_from": "is-path-inside@>=1.0.0 <2.0.0",
+ "_id": "is-path-inside@1.0.0",
+ "_inCache": true,
+ "_location": "/is-path-inside",
+ "_npmUser": {
+ "name": "sindresorhus",
+ "email": "sindresorhus@gmail.com"
+ },
+ "_npmVersion": "1.4.21",
+ "_phantomChildren": {},
+ "_requested": {
+ "raw": "is-path-inside@^1.0.0",
+ "scope": null,
+ "escapedName": "is-path-inside",
+ "name": "is-path-inside",
+ "rawSpec": "^1.0.0",
+ "spec": ">=1.0.0 <2.0.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/is-path-in-cwd"
+ ],
+ "_resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz",
+ "_shasum": "fc06e5a1683fbda13de667aff717bbc10a48f37f",
+ "_shrinkwrap": null,
+ "_spec": "is-path-inside@^1.0.0",
+ "_where": "/home/dold/repos/taler/wallet-webex/node_modules/is-path-in-cwd",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "http://sindresorhus.com"
+ },
+ "bugs": {
+ "url": "https://github.com/sindresorhus/is-path-inside/issues"
+ },
+ "dependencies": {
+ "path-is-inside": "^1.0.1"
+ },
+ "description": "Check if a path is inside another path",
+ "devDependencies": {
+ "mocha": "*"
+ },
+ "directories": {},
+ "dist": {
+ "shasum": "fc06e5a1683fbda13de667aff717bbc10a48f37f",
+ "tarball": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "files": [
+ "index.js"
+ ],
+ "gitHead": "b507035b66a539b7c12ba8b6b486377aa02aef9f",
+ "homepage": "https://github.com/sindresorhus/is-path-inside",
+ "keywords": [
+ "path",
+ "inside",
+ "folder",
+ "directory",
+ "dir",
+ "file",
+ "resolve"
+ ],
+ "license": "MIT",
+ "maintainers": [
+ {
+ "name": "sindresorhus",
+ "email": "sindresorhus@gmail.com"
+ }
+ ],
+ "name": "is-path-inside",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/sindresorhus/is-path-inside.git"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "version": "1.0.0"
+}
diff --git a/node_modules/is-path-inside/readme.md b/node_modules/is-path-inside/readme.md
new file mode 100644
index 000000000..0e4eb74f7
--- /dev/null
+++ b/node_modules/is-path-inside/readme.md
@@ -0,0 +1,31 @@
+# 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
+
+```sh
+$ npm install --save is-path-inside
+```
+
+
+## Usage
+
+```js
+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](http://sindresorhus.com)