aboutsummaryrefslogtreecommitdiff
path: root/node_modules/expand-range
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/expand-range')
-rw-r--r--node_modules/expand-range/LICENSE24
-rw-r--r--node_modules/expand-range/README.md145
-rw-r--r--node_modules/expand-range/index.js43
-rw-r--r--node_modules/expand-range/package.json73
4 files changed, 0 insertions, 285 deletions
diff --git a/node_modules/expand-range/LICENSE b/node_modules/expand-range/LICENSE
deleted file mode 100644
index b1e51ff71..000000000
--- a/node_modules/expand-range/LICENSE
+++ /dev/null
@@ -1,24 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014-2016, 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/expand-range/README.md b/node_modules/expand-range/README.md
deleted file mode 100644
index 72c7e8c6c..000000000
--- a/node_modules/expand-range/README.md
+++ /dev/null
@@ -1,145 +0,0 @@
-# expand-range [![NPM version](https://img.shields.io/npm/v/expand-range.svg?style=flat)](https://www.npmjs.com/package/expand-range) [![NPM downloads](https://img.shields.io/npm/dm/expand-range.svg?style=flat)](https://npmjs.org/package/expand-range) [![Build Status](https://img.shields.io/travis/jonschlinkert/expand-range.svg?style=flat)](https://travis-ci.org/jonschlinkert/expand-range)
-
-Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.
-
-## Install
-
-Install with [npm](https://www.npmjs.com/):
-
-```sh
-$ npm install expand-range --save
-```
-
-Wraps [fill-range] to do range expansion using `..` separated strings. See [fill-range] for the full list of options and features.
-
-## Example usage
-
-```js
-var expand = require('expand-range');
-```
-
-**Params**
-
-```js
-expand(start, stop, increment);
-```
-
-* `start`: the number or letter to start with
-* `end`: the number or letter to end with
-* `increment`: optionally pass the increment to use. works for letters or numbers
-
-**Examples**
-
-```js
-expand('a..e')
-//=> ['a', 'b', 'c', 'd', 'e']
-
-expand('a..e..2')
-//=> ['a', 'c', 'e']
-
-expand('A..E..2')
-//=> ['A', 'C', 'E']
-
-expand('1..3')
-//=> ['1', '2', '3']
-
-expand('0..-5')
-//=> [ '0', '-1', '-2', '-3', '-4', '-5' ]
-
-expand('-9..9..3')
-//=> [ '-9', '-6', '-3', '0', '3', '6', '9' ])
-
-expand('-1..-10..-2')
-//=> [ '-1', '-3', '-5', '-7', '-9' ]
-
-expand('1..10..2')
-//=> [ '1', '3', '5', '7', '9' ]
-```
-
-### Custom function
-
-Optionally pass a custom function as the second argument:
-
-```js
-expand('a..e', function (val, isNumber, pad, i) {
- if (!isNumber) {
- return String.fromCharCode(val) + i;
- }
- return val;
-});
-//=> ['a0', 'b1', 'c2', 'd3', 'e4']
-```
-
-## Benchmarks
-
-```sh
-# benchmark/fixtures/alpha-lower.js (29 bytes)
- brace-expansion x 145,653 ops/sec ±0.89% (87 runs sampled)
- expand-range x 453,213 ops/sec ±1.66% (85 runs sampled)
- minimatch x 152,193 ops/sec ±1.17% (86 runs sampled)
-
-# benchmark/fixtures/alpha-upper.js (29 bytes)
- brace-expansion x 149,975 ops/sec ±1.10% (88 runs sampled)
- expand-range x 459,390 ops/sec ±1.27% (84 runs sampled)
- minimatch x 155,253 ops/sec ±1.25% (88 runs sampled)
-
-# benchmark/fixtures/padded.js (33 bytes)
- brace-expansion x 14,694 ops/sec ±1.37% (85 runs sampled)
- expand-range x 169,393 ops/sec ±1.76% (80 runs sampled)
- minimatch x 15,052 ops/sec ±1.15% (88 runs sampled)
-
-# benchmark/fixtures/range.js (29 bytes)
- brace-expansion x 142,968 ops/sec ±1.35% (86 runs sampled)
- expand-range x 465,579 ops/sec ±1.43% (86 runs sampled)
- minimatch x 126,872 ops/sec ±1.18% (90 runs sampled)
-```
-
-## Related projects
-
-You might also be interested in these projects:
-
-* [braces](https://www.npmjs.com/package/braces): Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces… [more](https://www.npmjs.com/package/braces) | [homepage](https://github.com/jonschlinkert/braces)
-* [fill-range](https://www.npmjs.com/package/fill-range): Fill in a range of numbers or letters, optionally passing an increment or multiplier to… [more](https://www.npmjs.com/package/fill-range) | [homepage](https://github.com/jonschlinkert/fill-range)
-* [micromatch](https://www.npmjs.com/package/micromatch): Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. | [homepage](https://github.com/jonschlinkert/micromatch)
-
-## Contributing
-
-Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/expand-range/issues/new).
-
-## Building docs
-
-Generate readme and API documentation with [verb](https://github.com/verbose/verb):
-
-```sh
-$ npm install verb && npm run docs
-```
-
-Or, if [verb](https://github.com/verbose/verb) is installed globally:
-
-```sh
-$ verb
-```
-
-## Running tests
-
-Install dev dependencies:
-
-```sh
-$ npm install -d && npm test
-```
-
-## Author
-
-**Jon Schlinkert**
-
-* [github/jonschlinkert](https://github.com/jonschlinkert)
-* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
-
-## License
-
-Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert).
-Released under the [MIT license](https://github.com/jonschlinkert/expand-range/blob/master/LICENSE).
-
-***
-
-_This file was generated by [verb](https://github.com/verbose/verb), v0.9.0, on May 05, 2016._ \ No newline at end of file
diff --git a/node_modules/expand-range/index.js b/node_modules/expand-range/index.js
deleted file mode 100644
index 369962a87..000000000
--- a/node_modules/expand-range/index.js
+++ /dev/null
@@ -1,43 +0,0 @@
-/*!
- * expand-range <https://github.com/jonschlinkert/expand-range>
- *
- * Copyright (c) 2014-2015, Jon Schlinkert.
- * Licensed under the MIT license.
- */
-
-'use strict';
-
-var fill = require('fill-range');
-
-module.exports = function expandRange(str, options, fn) {
- if (typeof str !== 'string') {
- throw new TypeError('expand-range expects a string.');
- }
-
- if (typeof options === 'function') {
- fn = options;
- options = {};
- }
-
- if (typeof options === 'boolean') {
- options = {};
- options.makeRe = true;
- }
-
- // create arguments to pass to fill-range
- var opts = options || {};
- var args = str.split('..');
- var len = args.length;
- if (len > 3) { return str; }
-
- // if only one argument, it can't expand so return it
- if (len === 1) { return args; }
-
- // if `true`, tell fill-range to regexify the string
- if (typeof fn === 'boolean' && fn === true) {
- opts.makeRe = true;
- }
-
- args.push(opts);
- return fill.apply(null, args.concat(fn));
-};
diff --git a/node_modules/expand-range/package.json b/node_modules/expand-range/package.json
deleted file mode 100644
index 01df494cd..000000000
--- a/node_modules/expand-range/package.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "name": "expand-range",
- "description": "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.",
- "version": "1.8.2",
- "homepage": "https://github.com/jonschlinkert/expand-range",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "repository": "jonschlinkert/expand-range",
- "bugs": {
- "url": "https://github.com/jonschlinkert/expand-range/issues"
- },
- "license": "MIT",
- "files": [
- "index.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "dependencies": {
- "fill-range": "^2.1.0"
- },
- "devDependencies": {
- "benchmarked": "^0.2.4",
- "brace-expansion": "^1.1.4",
- "glob": "^7.0.3",
- "gulp-format-md": "^0.1.9",
- "minimatch": "^3.0.0",
- "mocha": "^2.4.5"
- },
- "keywords": [
- "alpha",
- "alphabetical",
- "bash",
- "brace",
- "expand",
- "expansion",
- "glob",
- "match",
- "matches",
- "matching",
- "number",
- "numerical",
- "range",
- "ranges",
- "sh"
- ],
- "verb": {
- "plugins": [
- "gulp-format-md"
- ],
- "reflinks": [
- "verb"
- ],
- "toc": false,
- "layout": "default",
- "lint": {
- "reflinks": true
- },
- "tasks": [
- "readme"
- ],
- "related": {
- "list": [
- "micromatch",
- "fill-range",
- "braces"
- ]
- }
- }
-}