summaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/LICENSE15
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/README.md91
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/index.js64
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/package.json103
4 files changed, 0 insertions, 273 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/LICENSE b/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/LICENSE
deleted file mode 100644
index bc424705..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/LICENSE
+++ /dev/null
@@ -1,15 +0,0 @@
-The ISC License
-
-Copyright (c) 2014 Elan Shanker
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
-IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/README.md b/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/README.md
deleted file mode 100644
index 0a632921..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/README.md
+++ /dev/null
@@ -1,91 +0,0 @@
-anymatch [![Build Status](https://travis-ci.org/es128/anymatch.svg?branch=master)](https://travis-ci.org/es128/anymatch) [![Coverage Status](https://img.shields.io/coveralls/es128/anymatch.svg?branch=master)](https://coveralls.io/r/es128/anymatch?branch=master)
-======
-Javascript module to match a string against a regular expression, glob, string,
-or function that takes the string as an argument and returns a truthy or falsy
-value. The matcher can also be an array of any or all of these. Useful for
-allowing a very flexible user-defined config to define things like file paths.
-
-[![NPM](https://nodei.co/npm/anymatch.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/anymatch/)
-[![NPM](https://nodei.co/npm-dl/anymatch.png?height=3&months=9)](https://nodei.co/npm-dl/anymatch/)
-
-Usage
------
-```sh
-npm install anymatch --save
-```
-
-#### anymatch (matchers, testString, [returnIndex], [startIndex], [endIndex])
-* __matchers__: (_Array|String|RegExp|Function_)
-String to be directly matched, string with glob patterns, regular expression
-test, function that takes the testString as an argument and returns a truthy
-value if it should be matched, or an array of any number and mix of these types.
-* __testString__: (_String|Array_) The string to test against the matchers. If
-passed as an array, the first element of the array will be used as the
-`testString` for non-function matchers, while the entire array will be applied
-as the arguments for function matchers.
-* __returnIndex__: (_Boolean [optional]_) If true, return the array index of
-the first matcher that that testString matched, or -1 if no match, instead of a
-boolean result.
-* __startIndex, endIndex__: (_Integer [optional]_) Can be used to define a
-subset out of the array of provided matchers to test against. Can be useful
-with bound matcher functions (see below). When used with `returnIndex = true`
-preserves original indexing. Behaves the same as `Array.prototype.slice` (i.e.
-includes array members up to, but not including endIndex).
-
-```js
-var anymatch = require('anymatch');
-
-var matchers = [
- 'path/to/file.js',
- 'path/anyjs/**/*.js',
- /foo.js$/,
- function (string) {
- return string.indexOf('bar') !== -1 && string.length > 10
- }
-];
-
-anymatch(matchers, 'path/to/file.js'); // true
-anymatch(matchers, 'path/anyjs/baz.js'); // true
-anymatch(matchers, 'path/to/foo.js'); // true
-anymatch(matchers, 'path/to/bar.js'); // true
-anymatch(matchers, 'bar.js'); // false
-
-// returnIndex = true
-anymatch(matchers, 'foo.js', true); // 2
-anymatch(matchers, 'path/anyjs/foo.js', true); // 1
-
-// skip matchers
-anymatch(matchers, 'path/to/file.js', false, 1); // false
-anymatch(matchers, 'path/anyjs/foo.js', true, 2, 3); // 2
-anymatch(matchers, 'path/to/bar.js', true, 0, 3); // -1
-```
-
-#### anymatch (matchers)
-You can also pass in only your matcher(s) to get a curried function that has
-already been bound to the provided matching criteria. This can be used as an
-`Array.prototype.filter` callback.
-
-```js
-var matcher = anymatch(matchers);
-
-matcher('path/to/file.js'); // true
-matcher('path/anyjs/baz.js', true); // 1
-matcher('path/anyjs/baz.js', true, 2); // -1
-
-['foo.js', 'bar.js'].filter(matcher); // ['foo.js']
-```
-
-Change Log
-----------
-[See release notes page on GitHub](https://github.com/es128/anymatch/releases)
-
-NOTE: As of v1.2.0, anymatch uses [micromatch](https://github.com/jonschlinkert/micromatch)
-for glob pattern matching. The glob matching behavior should be functionally
-equivalent to the commonly used [minimatch](https://github.com/isaacs/minimatch)
-library (aside from some fixed bugs and greater performance), so a major
-version bump wasn't merited. Issues with glob pattern matching should be
-reported directly to the [micromatch issue tracker](https://github.com/jonschlinkert/micromatch/issues).
-
-License
--------
-[ISC](https://raw.github.com/es128/anymatch/master/LICENSE)
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/index.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/index.js
deleted file mode 100644
index fd70ba07..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/index.js
+++ /dev/null
@@ -1,64 +0,0 @@
-'use strict';
-
-var arrify = require('arrify');
-var micromatch = require('micromatch');
-var path = require('path');
-
-var anymatch = function(criteria, value, returnIndex, startIndex, endIndex) {
- criteria = arrify(criteria);
- value = arrify(value);
- if (arguments.length === 1) {
- return anymatch.bind(null, criteria.map(function(criterion) {
- return typeof criterion === 'string' && criterion[0] !== '!' ?
- micromatch.matcher(criterion) : criterion;
- }));
- }
- startIndex = startIndex || 0;
- var string = value[0];
- var altString;
- var matched = false;
- var matchIndex = -1;
- function testCriteria (criterion, index) {
- var result;
- switch (toString.call(criterion)) {
- case '[object String]':
- result = string === criterion || altString && altString === criterion;
- result = result || micromatch.isMatch(string, criterion);
- break;
- case '[object RegExp]':
- result = criterion.test(string) || altString && criterion.test(altString);
- break;
- case '[object Function]':
- result = criterion.apply(null, value);
- break;
- default:
- result = false;
- }
- if (result) {
- matchIndex = index + startIndex;
- }
- return result;
- }
- var crit = criteria;
- var negGlobs = crit.reduce(function(arr, criterion, index) {
- if (typeof criterion === 'string' && criterion[0] === '!') {
- if (crit === criteria) {
- // make a copy before modifying
- crit = crit.slice();
- }
- crit[index] = null;
- arr.push(criterion.substr(1));
- }
- return arr;
- }, []);
- if (!negGlobs.length || !micromatch.any(string, negGlobs)) {
- if (path.sep === '\\' && typeof string === 'string') {
- altString = string.split('\\').join('/');
- altString = altString === string ? null : altString;
- }
- matched = crit.slice(startIndex, endIndex).some(testCriteria);
- }
- return returnIndex === true ? matchIndex : matched;
-};
-
-module.exports = anymatch;
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/package.json b/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/package.json
deleted file mode 100644
index 78f9ad91..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/anymatch/package.json
+++ /dev/null
@@ -1,103 +0,0 @@
-{
- "_args": [
- [
- {
- "raw": "anymatch@^1.3.0",
- "scope": null,
- "escapedName": "anymatch",
- "name": "anymatch",
- "rawSpec": "^1.3.0",
- "spec": ">=1.3.0 <2.0.0",
- "type": "range"
- },
- "C:\\apache-tomcat-8.5.11\\webapps\\vnfmarket\\node_modules\\chokidar"
- ]
- ],
- "_from": "anymatch@>=1.3.0 <2.0.0",
- "_id": "anymatch@1.3.0",
- "_inCache": true,
- "_location": "/anymatch",
- "_nodeVersion": "1.6.2",
- "_npmUser": {
- "name": "es128",
- "email": "elan.shanker+npm@gmail.com"
- },
- "_npmVersion": "2.7.3",
- "_phantomChildren": {},
- "_requested": {
- "raw": "anymatch@^1.3.0",
- "scope": null,
- "escapedName": "anymatch",
- "name": "anymatch",
- "rawSpec": "^1.3.0",
- "spec": ">=1.3.0 <2.0.0",
- "type": "range"
- },
- "_requiredBy": [
- "/chokidar"
- ],
- "_resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz",
- "_shasum": "a3e52fa39168c825ff57b0248126ce5a8ff95507",
- "_shrinkwrap": null,
- "_spec": "anymatch@^1.3.0",
- "_where": "C:\\apache-tomcat-8.5.11\\webapps\\vnfmarket\\node_modules\\chokidar",
- "author": {
- "name": "Elan Shanker",
- "url": "http://github.com/es128"
- },
- "bugs": {
- "url": "https://github.com/es128/anymatch/issues"
- },
- "dependencies": {
- "arrify": "^1.0.0",
- "micromatch": "^2.1.5"
- },
- "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions",
- "devDependencies": {
- "coveralls": "^2.11.2",
- "istanbul": "^0.3.13",
- "mocha": "^2.2.4"
- },
- "directories": {},
- "dist": {
- "shasum": "a3e52fa39168c825ff57b0248126ce5a8ff95507",
- "tarball": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz"
- },
- "files": [
- "index.js"
- ],
- "gitHead": "253d2ad42f644ed18557f561312a7f8426daca84",
- "homepage": "https://github.com/es128/anymatch",
- "keywords": [
- "match",
- "any",
- "string",
- "file",
- "fs",
- "list",
- "glob",
- "regex",
- "regexp",
- "regular",
- "expression",
- "function"
- ],
- "license": "ISC",
- "maintainers": [
- {
- "name": "es128",
- "email": "elan.shanker+npm@gmail.com"
- }
- ],
- "name": "anymatch",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/es128/anymatch.git"
- },
- "scripts": {
- "test": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"
- },
- "version": "1.3.0"
-}