diff options
Diffstat (limited to 'node_modules/array-unique')
| -rwxr-xr-x | node_modules/array-unique/LICENSE | 21 | ||||
| -rwxr-xr-x | node_modules/array-unique/README.md | 77 | ||||
| -rw-r--r-- | node_modules/array-unique/index.js | 43 | ||||
| -rw-r--r-- | node_modules/array-unique/package.json | 100 | 
4 files changed, 241 insertions, 0 deletions
diff --git a/node_modules/array-unique/LICENSE b/node_modules/array-unique/LICENSE new file mode 100755 index 0000000..842218c --- /dev/null +++ b/node_modules/array-unique/LICENSE @@ -0,0 +1,21 @@ +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/array-unique/README.md b/node_modules/array-unique/README.md new file mode 100755 index 0000000..41c8c90 --- /dev/null +++ b/node_modules/array-unique/README.md @@ -0,0 +1,77 @@ +# array-unique [](https://www.npmjs.com/package/array-unique) [](https://npmjs.org/package/array-unique) [](https://travis-ci.org/jonschlinkert/array-unique) + +Remove duplicate values from an array. Fastest ES5 implementation. + +## Install + +Install with [npm](https://www.npmjs.com/): + +```sh +$ npm install --save array-unique +``` + +## Usage + +```js +var unique = require('array-unique'); + +var arr = ['a', 'b', 'c', 'c']; +console.log(unique(arr)) //=> ['a', 'b', 'c'] +console.log(arr)         //=> ['a', 'b', 'c'] + +/* The above modifies the input array. To prevent that at a slight performance cost: */ +var unique = require("array-unique").immutable; + +var arr = ['a', 'b', 'c', 'c']; +console.log(unique(arr)) //=> ['a', 'b', 'c'] +console.log(arr)         //=> ['a', 'b', 'c', 'c'] +``` + +## About + +### Related projects + +* [arr-diff](https://www.npmjs.com/package/arr-diff): Returns an array with only the unique values from the first array, by excluding all… [more](https://github.com/jonschlinkert/arr-diff) | [homepage](https://github.com/jonschlinkert/arr-diff "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.") +* [arr-flatten](https://www.npmjs.com/package/arr-flatten): Recursively flatten an array or arrays. This is the fastest implementation of array flatten. | [homepage](https://github.com/jonschlinkert/arr-flatten "Recursively flatten an array or arrays. This is the fastest implementation of array flatten.") +* [arr-map](https://www.npmjs.com/package/arr-map): Faster, node.js focused alternative to JavaScript's native array map. | [homepage](https://github.com/jonschlinkert/arr-map "Faster, node.js focused alternative to JavaScript's native array map.") +* [arr-pluck](https://www.npmjs.com/package/arr-pluck): Retrieves the value of a specified property from all elements in the collection. | [homepage](https://github.com/jonschlinkert/arr-pluck "Retrieves the value of a specified property from all elements in the collection.") +* [arr-reduce](https://www.npmjs.com/package/arr-reduce): Fast array reduce that also loops over sparse elements. | [homepage](https://github.com/jonschlinkert/arr-reduce "Fast array reduce that also loops over sparse elements.") +* [arr-union](https://www.npmjs.com/package/arr-union): Combines a list of arrays, returning a single array with unique values, using strict equality… [more](https://github.com/jonschlinkert/arr-union) | [homepage](https://github.com/jonschlinkert/arr-union "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.") + +### Contributing + +Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). + +### Building docs + +_(This document was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme) (a [verb](https://github.com/verbose/verb) generator), please don't edit the readme directly. Any changes to the readme must be made in [.verb.md](.verb.md).)_ + +To generate the readme and API documentation with [verb](https://github.com/verbose/verb): + +```sh +$ npm install -g verb verb-generate-readme && 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/array-unique/blob/master/LICENSE). + +*** + +_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.1.28, on July 31, 2016._
\ No newline at end of file diff --git a/node_modules/array-unique/index.js b/node_modules/array-unique/index.js new file mode 100644 index 0000000..7e481e0 --- /dev/null +++ b/node_modules/array-unique/index.js @@ -0,0 +1,43 @@ +/*! + * array-unique <https://github.com/jonschlinkert/array-unique> + * + * Copyright (c) 2014-2015, Jon Schlinkert. + * Licensed under the MIT License. + */ + +'use strict'; + +module.exports = function unique(arr) { +  if (!Array.isArray(arr)) { +    throw new TypeError('array-unique expects an array.'); +  } + +  var len = arr.length; +  var i = -1; + +  while (i++ < len) { +    var j = i + 1; + +    for (; j < arr.length; ++j) { +      if (arr[i] === arr[j]) { +        arr.splice(j--, 1); +      } +    } +  } +  return arr; +}; + +module.exports.immutable = function uniqueImmutable(arr) { +  if (!Array.isArray(arr)) { +    throw new TypeError('array-unique expects an array.'); +  } + +  var arrLen = arr.length; +  var newArr = new Array(arrLen); + +  for (var i = 0; i < arrLen; i++) { +    newArr[i] = arr[i]; +  } + +  return module.exports(newArr); +}; diff --git a/node_modules/array-unique/package.json b/node_modules/array-unique/package.json new file mode 100644 index 0000000..ef3bab3 --- /dev/null +++ b/node_modules/array-unique/package.json @@ -0,0 +1,100 @@ +{ +  "_args": [ +    [ +      "array-unique@0.3.2", +      "/home/dstaesse/git/website" +    ] +  ], +  "_development": true, +  "_from": "array-unique@0.3.2", +  "_id": "array-unique@0.3.2", +  "_inBundle": false, +  "_integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", +  "_location": "/array-unique", +  "_phantomChildren": {}, +  "_requested": { +    "type": "version", +    "registry": true, +    "raw": "array-unique@0.3.2", +    "name": "array-unique", +    "escapedName": "array-unique", +    "rawSpec": "0.3.2", +    "saveSpec": null, +    "fetchSpec": "0.3.2" +  }, +  "_requiredBy": [ +    "/braces", +    "/extglob", +    "/micromatch", +    "/nanomatch" +  ], +  "_resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", +  "_spec": "0.3.2", +  "_where": "/home/dstaesse/git/website", +  "author": { +    "name": "Jon Schlinkert", +    "url": "https://github.com/jonschlinkert" +  }, +  "bugs": { +    "url": "https://github.com/jonschlinkert/array-unique/issues" +  }, +  "description": "Remove duplicate values from an array. Fastest ES5 implementation.", +  "devDependencies": { +    "array-uniq": "^1.0.2", +    "benchmarked": "^0.1.3", +    "gulp-format-md": "^0.1.9", +    "mocha": "^2.5.3", +    "should": "^10.0.0" +  }, +  "engines": { +    "node": ">=0.10.0" +  }, +  "files": [ +    "index.js", +    "LICENSE", +    "README.md" +  ], +  "homepage": "https://github.com/jonschlinkert/array-unique", +  "keywords": [ +    "array", +    "unique" +  ], +  "license": "MIT", +  "main": "index.js", +  "name": "array-unique", +  "repository": { +    "type": "git", +    "url": "git+https://github.com/jonschlinkert/array-unique.git" +  }, +  "scripts": { +    "test": "mocha" +  }, +  "verb": { +    "toc": false, +    "layout": "default", +    "tasks": [ +      "readme" +    ], +    "plugins": [ +      "gulp-format-md" +    ], +    "related": { +      "list": [ +        "arr-diff", +        "arr-union", +        "arr-flatten", +        "arr-reduce", +        "arr-map", +        "arr-pluck" +      ] +    }, +    "reflinks": [ +      "verb", +      "verb-generate-readme" +    ], +    "lint": { +      "reflinks": true +    } +  }, +  "version": "0.3.2" +}  | 
