aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-valid-glob
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-valid-glob
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/is-valid-glob')
-rw-r--r--node_modules/is-valid-glob/LICENSE21
-rw-r--r--node_modules/is-valid-glob/README.md88
-rw-r--r--node_modules/is-valid-glob/index.js21
-rw-r--r--node_modules/is-valid-glob/package.json114
4 files changed, 244 insertions, 0 deletions
diff --git a/node_modules/is-valid-glob/LICENSE b/node_modules/is-valid-glob/LICENSE
new file mode 100644
index 000000000..65f90aca8
--- /dev/null
+++ b/node_modules/is-valid-glob/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/is-valid-glob/README.md b/node_modules/is-valid-glob/README.md
new file mode 100644
index 000000000..5dbf43561
--- /dev/null
+++ b/node_modules/is-valid-glob/README.md
@@ -0,0 +1,88 @@
+# is-valid-glob [![NPM version](https://badge.fury.io/js/is-valid-glob.svg)](http://badge.fury.io/js/is-valid-glob)
+
+> Return true if a value is a valid glob pattern or patterns.
+
+This really just checks to make sure that a pattern is either a string or array, and if it's an array it's either empty or consists of only strings.
+
+## Install
+
+Install with [npm](https://www.npmjs.com/)
+
+```sh
+$ npm i is-valid-glob --save
+```
+
+## Usage
+
+```js
+var isValidGlob = require('is-valid-glob');
+
+isValidGlob('foo/*.js');
+//=> true
+```
+
+**Valid patterns**
+
+```js
+isValidGlob('a');
+isValidGlob('a.js');
+isValidGlob('*.js');
+isValidGlob(['a', 'b']);
+//=> all true
+```
+
+**Invalid patterns**
+
+```js
+isValidGlob();
+isValidGlob('');
+isValidGlob(null);
+isValidGlob(undefined);
+isValidGlob(new Buffer('foo'));
+isValidGlob(['foo', [[]]]);
+isValidGlob(['foo', [['bar']]]);
+isValidGlob(['foo', {}]);
+isValidGlob({});
+isValidGlob([]);
+isValidGlob(['']);
+//=> all false
+```
+
+## Related projects
+
+* [braces](https://github.com/jonschlinkert/braces): Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces… [more](https://github.com/jonschlinkert/braces)
+* [expand-range](https://github.com/jonschlinkert/expand-range): Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See… [more](https://github.com/jonschlinkert/expand-range)
+* [fill-range](https://github.com/jonschlinkert/fill-range): Fill in a range of numbers or letters, optionally passing an increment or multiplier to… [more](https://github.com/jonschlinkert/fill-range)
+* [gulp](http://gulpjs.com): The streaming build system
+* [glob-fs](https://github.com/jonschlinkert/glob-fs): file globbing for node.js. speedy and powerful alternative to node-glob.
+* [is-glob](https://github.com/jonschlinkert/is-glob): Returns `true` if the given string looks like a glob pattern.
+* [micromatch](https://github.com/jonschlinkert/micromatch): Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. Just… [more](https://github.com/jonschlinkert/micromatch)
+* [vinyl-fs](http://github.com/wearefractal/vinyl-fs): Vinyl adapter for the file system
+
+## 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/is-valid-glob/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 11, 2015._ \ No newline at end of file
diff --git a/node_modules/is-valid-glob/index.js b/node_modules/is-valid-glob/index.js
new file mode 100644
index 000000000..6b1899f17
--- /dev/null
+++ b/node_modules/is-valid-glob/index.js
@@ -0,0 +1,21 @@
+'use strict';
+
+module.exports = function isValidGlob(glob) {
+ if (typeof glob === 'string' && glob.length > 0) {
+ return true;
+ }
+ if (Array.isArray(glob)) {
+ return glob.length !== 0 && every(glob);
+ }
+ return false;
+};
+
+function every(arr) {
+ var len = arr.length;
+ while (len--) {
+ if (typeof arr[len] !== 'string' || arr[len].length <= 0) {
+ return false;
+ }
+ }
+ return true;
+}
diff --git a/node_modules/is-valid-glob/package.json b/node_modules/is-valid-glob/package.json
new file mode 100644
index 000000000..ce5f6aa8f
--- /dev/null
+++ b/node_modules/is-valid-glob/package.json
@@ -0,0 +1,114 @@
+{
+ "_args": [
+ [
+ {
+ "raw": "is-valid-glob@^0.3.0",
+ "scope": null,
+ "escapedName": "is-valid-glob",
+ "name": "is-valid-glob",
+ "rawSpec": "^0.3.0",
+ "spec": ">=0.3.0 <0.4.0",
+ "type": "range"
+ },
+ "/home/dold/repos/taler/wallet-webex/node_modules/vinyl-fs"
+ ]
+ ],
+ "_from": "is-valid-glob@>=0.3.0 <0.4.0",
+ "_id": "is-valid-glob@0.3.0",
+ "_inCache": true,
+ "_location": "/is-valid-glob",
+ "_nodeVersion": "0.12.4",
+ "_npmUser": {
+ "name": "jonschlinkert",
+ "email": "github@sellside.com"
+ },
+ "_npmVersion": "2.10.1",
+ "_phantomChildren": {},
+ "_requested": {
+ "raw": "is-valid-glob@^0.3.0",
+ "scope": null,
+ "escapedName": "is-valid-glob",
+ "name": "is-valid-glob",
+ "rawSpec": "^0.3.0",
+ "spec": ">=0.3.0 <0.4.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/vinyl-fs"
+ ],
+ "_resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz",
+ "_shasum": "d4b55c69f51886f9b65c70d6c2622d37e29f48fe",
+ "_shrinkwrap": null,
+ "_spec": "is-valid-glob@^0.3.0",
+ "_where": "/home/dold/repos/taler/wallet-webex/node_modules/vinyl-fs",
+ "author": {
+ "name": "Jon Schlinkert",
+ "url": "https://github.com/jonschlinkert"
+ },
+ "bugs": {
+ "url": "https://github.com/jonschlinkert/is-valid-glob/issues"
+ },
+ "dependencies": {},
+ "description": "Return true if a value is a valid glob pattern or patterns.",
+ "devDependencies": {
+ "mocha": "*"
+ },
+ "directories": {},
+ "dist": {
+ "shasum": "d4b55c69f51886f9b65c70d6c2622d37e29f48fe",
+ "tarball": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "files": [
+ "index.js"
+ ],
+ "gitHead": "1db8053be10fcbfbe5e38dd671a7b2660556a8e1",
+ "homepage": "https://github.com/jonschlinkert/is-valid-glob",
+ "keywords": [
+ "array",
+ "check",
+ "glob",
+ "match",
+ "pattern",
+ "patterns",
+ "read",
+ "test",
+ "valid",
+ "validate"
+ ],
+ "license": "MIT",
+ "main": "index.js",
+ "maintainers": [
+ {
+ "name": "jonschlinkert",
+ "email": "github@sellside.com"
+ }
+ ],
+ "name": "is-valid-glob",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/jonschlinkert/is-valid-glob.git"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "verb": {
+ "related": {
+ "list": [
+ "gulp",
+ "vinyl-fs",
+ "is-glob",
+ "micromatch",
+ "braces",
+ "fill-range",
+ "expand-range",
+ "glob-fs"
+ ]
+ }
+ },
+ "version": "0.3.0"
+}