diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-09-20 02:56:13 +0200 |
commit | bbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch) | |
tree | c58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/lodash.values | |
parent | 003fb34971cf63466184351b4db5f7c67df4f444 (diff) |
update packages
Diffstat (limited to 'node_modules/lodash.values')
-rw-r--r-- | node_modules/lodash.values/LICENSE.txt | 22 | ||||
-rw-r--r-- | node_modules/lodash.values/README.md | 15 | ||||
-rw-r--r-- | node_modules/lodash.values/index.js | 36 | ||||
-rw-r--r-- | node_modules/lodash.values/package.json | 20 |
4 files changed, 0 insertions, 93 deletions
diff --git a/node_modules/lodash.values/LICENSE.txt b/node_modules/lodash.values/LICENSE.txt deleted file mode 100644 index 49869bbab..000000000 --- a/node_modules/lodash.values/LICENSE.txt +++ /dev/null @@ -1,22 +0,0 @@ -Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/> -Based on Underscore.js 1.5.2, copyright 2009-2013 Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/> - -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.
\ No newline at end of file diff --git a/node_modules/lodash.values/README.md b/node_modules/lodash.values/README.md deleted file mode 100644 index 33f028da0..000000000 --- a/node_modules/lodash.values/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# lodash.values v2.4.1 - -The [Lo-Dash](http://lodash.com/) function [`_.values`](http://lodash.com/docs#values) as a [Node.js](http://nodejs.org/) module generated by [lodash-cli](https://npmjs.org/package/lodash-cli). - -## Author - -| [](https://twitter.com/jdalton "Follow @jdalton on Twitter") | -|---| -| [John-David Dalton](http://allyoucanleet.com/) | - -## Contributors - -| [](https://twitter.com/blainebublitz "Follow @BlaineBublitz on Twitter") | [](https://twitter.com/kitcambridge "Follow @kitcambridge on Twitter") | [](https://twitter.com/mathias "Follow @mathias on Twitter") | -|---|---|---| -| [Blaine Bublitz](http://www.iceddev.com/) | [Kit Cambridge](http://kitcambridge.be/) | [Mathias Bynens](http://mathiasbynens.be/) | diff --git a/node_modules/lodash.values/index.js b/node_modules/lodash.values/index.js deleted file mode 100644 index ccf622fa6..000000000 --- a/node_modules/lodash.values/index.js +++ /dev/null @@ -1,36 +0,0 @@ -/** - * Lo-Dash 2.4.1 (Custom Build) <http://lodash.com/> - * Build: `lodash modularize modern exports="npm" -o ./npm/` - * Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/> - * Based on Underscore.js 1.5.2 <http://underscorejs.org/LICENSE> - * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Available under MIT license <http://lodash.com/license> - */ -var keys = require('lodash.keys'); - -/** - * Creates an array composed of the own enumerable property values of `object`. - * - * @static - * @memberOf _ - * @category Objects - * @param {Object} object The object to inspect. - * @returns {Array} Returns an array of property values. - * @example - * - * _.values({ 'one': 1, 'two': 2, 'three': 3 }); - * // => [1, 2, 3] (property order is not guaranteed across environments) - */ -function values(object) { - var index = -1, - props = keys(object), - length = props.length, - result = Array(length); - - while (++index < length) { - result[index] = object[props[index]]; - } - return result; -} - -module.exports = values; diff --git a/node_modules/lodash.values/package.json b/node_modules/lodash.values/package.json deleted file mode 100644 index 23d299c1c..000000000 --- a/node_modules/lodash.values/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "lodash.values", - "version": "2.4.1", - "description": "The Lo-Dash function `_.values` as a Node.js module generated by lodash-cli.", - "homepage": "http://lodash.com/custom-builds", - "license": "MIT", - "keywords": ["functional", "lodash", "lodash-modularized", "server", "util"], - "author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", - "contributors": [ - "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", - "Blaine Bublitz <blaine@iceddev.com> (http://www.iceddev.com/)", - "Kit Cambridge <github@kitcambridge.be> (http://kitcambridge.be/)", - "Mathias Bynens <mathias@qiwi.be> (http://mathiasbynens.be/)" - ], - "bugs": "https://github.com/lodash/lodash-cli/issues", - "repository": { "type": "git", "url": "https://github.com/lodash/lodash-cli.git" }, - "dependencies": { - "lodash.keys": "~2.4.1" - } -} |