aboutsummaryrefslogtreecommitdiff
path: root/node_modules/unc-path-regex
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/unc-path-regex
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/unc-path-regex')
-rw-r--r--node_modules/unc-path-regex/LICENSE21
-rw-r--r--node_modules/unc-path-regex/README.md88
-rw-r--r--node_modules/unc-path-regex/index.js5
-rw-r--r--node_modules/unc-path-regex/package.json124
4 files changed, 238 insertions, 0 deletions
diff --git a/node_modules/unc-path-regex/LICENSE b/node_modules/unc-path-regex/LICENSE
new file mode 100644
index 000000000..65f90aca8
--- /dev/null
+++ b/node_modules/unc-path-regex/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2015, Jon Schlinkert.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/unc-path-regex/README.md b/node_modules/unc-path-regex/README.md
new file mode 100644
index 000000000..e0edddab5
--- /dev/null
+++ b/node_modules/unc-path-regex/README.md
@@ -0,0 +1,88 @@
+# unc-path-regex [![NPM version](https://badge.fury.io/js/unc-path-regex.svg)](http://badge.fury.io/js/unc-path-regex) [![Build Status](https://travis-ci.org/jonschlinkert/unc-path-regex.svg)](https://travis-ci.org/jonschlinkert/unc-path-regex)
+
+> Regular expression for testing if a file path is a windows UNC file path. Can also be used as a component of another regexp via the `.source` property.
+
+Visit the MSDN reference for [Common Data Types 2.2.57 UNC](https://msdn.microsoft.com/en-us/library/gg465305.aspx) for more information about UNC paths.
+
+## Install
+
+Install with [npm](https://www.npmjs.com/)
+
+```sh
+$ npm i unc-path-regex --save
+```
+
+## Usage
+
+```js
+// unc-path-regex returns a function
+var regex = require('unc-path-regex')();
+```
+
+**true**
+
+Returns true for windows UNC paths:
+
+```js
+regex.test('\\/foo/bar');
+regex.test('\\\\foo/bar');
+regex.test('\\\\foo\\admin$');
+regex.test('\\\\foo\\admin$\\system32');
+regex.test('\\\\foo\\temp');
+regex.test('\\\\/foo/bar');
+regex.test('\\\\\\/foo/bar');
+```
+
+**false**
+
+Returns false for non-UNC paths:
+
+```js
+regex.test('/foo/bar');
+regex.test('/');
+regex.test('/foo');
+regex.test('/foo/');
+regex.test('c:');
+regex.test('c:.');
+regex.test('c:./');
+regex.test('c:./file');
+regex.test('c:/');
+regex.test('c:/file');
+```
+
+## Related projects
+
+* [dotfile-regex](https://github.com/regexps/dotfile-regex): Regular expresson for matching dotfiles.
+* [dotdir-regex](https://github.com/regexps/dotdir-regex): Regex for matching dot-directories, like `.git/`
+* [dirname-regex](https://github.com/regexps/dirname-regex): Regular expression for matching the directory part of a file path.
+* [is-unc-path](https://github.com/jonschlinkert/is-unc-path): Returns true if a filepath is a windows UNC file path.
+* [is-glob](https://github.com/jonschlinkert/is-glob): Returns `true` if the given string looks like a glob pattern.
+* [path-regex](https://github.com/regexps/path-regex): Regular expression for matching the parts of a file path.
+
+## Running tests
+
+Install dev dependencies:
+
+```sh
+$ npm i -d && npm test
+```
+
+## Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/unc-path-regex/issues/new)
+
+## Author
+
+**Jon Schlinkert**
+
++ [github/jonschlinkert](https://github.com/jonschlinkert)
++ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
+
+## License
+
+Copyright © 2015 Jon Schlinkert
+Released under the MIT license.
+
+***
+
+_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on July 07, 2015._ \ No newline at end of file
diff --git a/node_modules/unc-path-regex/index.js b/node_modules/unc-path-regex/index.js
new file mode 100644
index 000000000..c268404d8
--- /dev/null
+++ b/node_modules/unc-path-regex/index.js
@@ -0,0 +1,5 @@
+'use strict';
+
+module.exports = function uncPathRegex() {
+ return /^[\\\/]{2,}[^\\\/]+[\\\/]+[^\\\/]+/;
+};
diff --git a/node_modules/unc-path-regex/package.json b/node_modules/unc-path-regex/package.json
new file mode 100644
index 000000000..4b444e890
--- /dev/null
+++ b/node_modules/unc-path-regex/package.json
@@ -0,0 +1,124 @@
+{
+ "_args": [
+ [
+ {
+ "raw": "unc-path-regex@^0.1.0",
+ "scope": null,
+ "escapedName": "unc-path-regex",
+ "name": "unc-path-regex",
+ "rawSpec": "^0.1.0",
+ "spec": ">=0.1.0 <0.2.0",
+ "type": "range"
+ },
+ "/home/dold/repos/taler/wallet-webex/node_modules/is-unc-path"
+ ]
+ ],
+ "_from": "unc-path-regex@>=0.1.0 <0.2.0",
+ "_id": "unc-path-regex@0.1.2",
+ "_inCache": true,
+ "_location": "/unc-path-regex",
+ "_nodeVersion": "5.8.0",
+ "_npmOperationalInternal": {
+ "host": "packages-16-east.internal.npmjs.com",
+ "tmp": "tmp/unc-path-regex-0.1.2.tgz_1460256703094_0.4246507475618273"
+ },
+ "_npmUser": {
+ "name": "tunnckocore",
+ "email": "mameto_100@mail.bg"
+ },
+ "_npmVersion": "3.8.5",
+ "_phantomChildren": {},
+ "_requested": {
+ "raw": "unc-path-regex@^0.1.0",
+ "scope": null,
+ "escapedName": "unc-path-regex",
+ "name": "unc-path-regex",
+ "rawSpec": "^0.1.0",
+ "spec": ">=0.1.0 <0.2.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/is-unc-path"
+ ],
+ "_resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz",
+ "_shasum": "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa",
+ "_shrinkwrap": null,
+ "_spec": "unc-path-regex@^0.1.0",
+ "_where": "/home/dold/repos/taler/wallet-webex/node_modules/is-unc-path",
+ "author": {
+ "name": "Jon Schlinkert",
+ "url": "https://github.com/jonschlinkert"
+ },
+ "bugs": {
+ "url": "https://github.com/regexhq/unc-path-regex/issues"
+ },
+ "dependencies": {},
+ "description": "Regular expression for testing if a file path is a windows UNC file path. Can also be used as a component of another regexp via the `.source` property.",
+ "devDependencies": {
+ "mocha": "*"
+ },
+ "directories": {},
+ "dist": {
+ "shasum": "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa",
+ "tarball": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "files": [
+ "index.js"
+ ],
+ "gitHead": "8962715152d8438fac975f90ac218017b41fea20",
+ "homepage": "https://github.com/regexhq/unc-path-regex",
+ "keywords": [
+ "absolute",
+ "expression",
+ "file",
+ "filepath",
+ "match",
+ "matching",
+ "path",
+ "regex",
+ "regexp",
+ "regular",
+ "unc",
+ "win",
+ "windows"
+ ],
+ "license": "MIT",
+ "main": "index.js",
+ "maintainers": [
+ {
+ "name": "jonschlinkert",
+ "email": "github@sellside.com"
+ },
+ {
+ "name": "tunnckocore",
+ "email": "mameto_100@mail.bg"
+ }
+ ],
+ "name": "unc-path-regex",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/regexhq/unc-path-regex.git"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "verb": {
+ "related": {
+ "list": [
+ "dotfile-regex",
+ "is-unc-path",
+ "unc-path-regex",
+ "dotdir-regex",
+ "path-regex",
+ "dirname-regex",
+ "is-glob"
+ ]
+ }
+ },
+ "version": "0.1.2"
+}