Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKat Marchán <kzm@sykosomatic.org>2016-03-31 03:56:21 +0300
committerKat Marchán <kzm@sykosomatic.org>2016-03-31 04:15:51 +0300
commitb50c41a9930dc5353a23c5ae2ff87bb99e11d482 (patch)
treedc5a94219afdf6a171e147091146d19c2b6326fb /node_modules/lodash.union
parent59c1ad7b6f243d07618ed5703bd11d787732fc57 (diff)
lodash.union@4.2.1
Credit: @jdalton
Diffstat (limited to 'node_modules/lodash.union')
-rw-r--r--node_modules/lodash.union/README.md4
-rw-r--r--node_modules/lodash.union/index.js2
-rw-r--r--node_modules/lodash.union/node_modules/lodash._baseflatten/README.md4
-rw-r--r--node_modules/lodash.union/node_modules/lodash._baseflatten/index.js9
-rw-r--r--node_modules/lodash.union/node_modules/lodash._baseflatten/package.json36
-rw-r--r--node_modules/lodash.union/package.json42
6 files changed, 48 insertions, 49 deletions
diff --git a/node_modules/lodash.union/README.md b/node_modules/lodash.union/README.md
index e23dd0771..51b5100b9 100644
--- a/node_modules/lodash.union/README.md
+++ b/node_modules/lodash.union/README.md
@@ -1,4 +1,4 @@
-# lodash.union v4.2.0
+# lodash.union v4.2.1
The [lodash](https://lodash.com/) method `_.union` exported as a [Node.js](https://nodejs.org/) module.
@@ -15,4 +15,4 @@ In Node.js:
var union = require('lodash.union');
```
-See the [documentation](https://lodash.com/docs#union) or [package source](https://github.com/lodash/lodash/blob/4.2.0-npm-packages/lodash.union) for more details.
+See the [documentation](https://lodash.com/docs#union) or [package source](https://github.com/lodash/lodash/blob/4.2.1-npm-packages/lodash.union) for more details.
diff --git a/node_modules/lodash.union/index.js b/node_modules/lodash.union/index.js
index 36cc1e6bc..158c0d75c 100644
--- a/node_modules/lodash.union/index.js
+++ b/node_modules/lodash.union/index.js
@@ -1,5 +1,5 @@
/**
- * lodash 4.2.0 (Custom Build) <https://lodash.com/>
+ * lodash 4.2.1 (Custom Build) <https://lodash.com/>
* Build: `lodash modularize exports="npm" -o ./`
* Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
diff --git a/node_modules/lodash.union/node_modules/lodash._baseflatten/README.md b/node_modules/lodash.union/node_modules/lodash._baseflatten/README.md
index c9d54a894..4250ad4af 100644
--- a/node_modules/lodash.union/node_modules/lodash._baseflatten/README.md
+++ b/node_modules/lodash.union/node_modules/lodash._baseflatten/README.md
@@ -1,4 +1,4 @@
-# lodash._baseflatten v4.1.0
+# lodash._baseflatten v4.1.1
The internal [lodash](https://lodash.com/) function `baseFlatten` exported as a [Node.js](https://nodejs.org/) module.
@@ -15,4 +15,4 @@ In Node.js:
var baseFlatten = require('lodash._baseflatten');
```
-See the [package source](https://github.com/lodash/lodash/blob/4.1.0-npm-packages/lodash._baseflatten) for more details.
+See the [package source](https://github.com/lodash/lodash/blob/4.1.1-npm-packages/lodash._baseflatten) for more details.
diff --git a/node_modules/lodash.union/node_modules/lodash._baseflatten/index.js b/node_modules/lodash.union/node_modules/lodash._baseflatten/index.js
index d684b4792..cf05fe5f1 100644
--- a/node_modules/lodash.union/node_modules/lodash._baseflatten/index.js
+++ b/node_modules/lodash.union/node_modules/lodash._baseflatten/index.js
@@ -1,5 +1,5 @@
/**
- * lodash 4.1.0 (Custom Build) <https://lodash.com/>
+ * lodash 4.1.1 (Custom Build) <https://lodash.com/>
* Build: `lodash modularize exports="npm" -o ./`
* Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
@@ -179,8 +179,7 @@ var isArray = Array.isArray;
* // => false
*/
function isArrayLike(value) {
- return value != null &&
- !(typeof value == 'function' && isFunction(value)) && isLength(getLength(value));
+ return value != null && isLength(getLength(value)) && !isFunction(value);
}
/**
@@ -228,8 +227,8 @@ function isArrayLikeObject(value) {
*/
function isFunction(value) {
// The use of `Object#toString` avoids issues with the `typeof` operator
- // in Safari 8 which returns 'object' for typed array constructors, and
- // PhantomJS 1.9 which returns 'function' for `NodeList` instances.
+ // in Safari 8 which returns 'object' for typed array and weak map constructors,
+ // and PhantomJS 1.9 which returns 'function' for `NodeList` instances.
var tag = isObject(value) ? objectToString.call(value) : '';
return tag == funcTag || tag == genTag;
}
diff --git a/node_modules/lodash.union/node_modules/lodash._baseflatten/package.json b/node_modules/lodash.union/node_modules/lodash._baseflatten/package.json
index c21e5e4eb..8b2e4529b 100644
--- a/node_modules/lodash.union/node_modules/lodash._baseflatten/package.json
+++ b/node_modules/lodash.union/node_modules/lodash._baseflatten/package.json
@@ -1,42 +1,42 @@
{
"_args": [
[
- "lodash._baseflatten@^4.0.0",
- "/Users/rebecca/code/npm/node_modules/lodash.union"
+ "lodash._baseflatten@~4.1.0",
+ "/Users/zkat/Documents/code/npm/node_modules/lodash.union"
]
],
- "_from": "lodash._baseflatten@>=4.0.0 <5.0.0",
- "_id": "lodash._baseflatten@4.1.0",
+ "_from": "lodash._baseflatten@>=4.1.0 <4.2.0",
+ "_id": "lodash._baseflatten@4.1.1",
"_inCache": true,
"_installable": true,
"_location": "/lodash.union/lodash._baseflatten",
"_nodeVersion": "5.5.0",
"_npmOperationalInternal": {
- "host": "packages-6-west.internal.npmjs.com",
- "tmp": "tmp/lodash._baseflatten-4.1.0.tgz_1455615012034_0.06309569417499006"
+ "host": "packages-13-west.internal.npmjs.com",
+ "tmp": "tmp/lodash._baseflatten-4.1.1.tgz_1456896418067_0.31963246082887053"
},
"_npmUser": {
"email": "john.david.dalton@gmail.com",
"name": "jdalton"
},
- "_npmVersion": "2.14.18",
+ "_npmVersion": "2.14.17",
"_phantomChildren": {},
"_requested": {
"name": "lodash._baseflatten",
- "raw": "lodash._baseflatten@^4.0.0",
- "rawSpec": "^4.0.0",
+ "raw": "lodash._baseflatten@~4.1.0",
+ "rawSpec": "~4.1.0",
"scope": null,
- "spec": ">=4.0.0 <5.0.0",
+ "spec": ">=4.1.0 <4.2.0",
"type": "range"
},
"_requiredBy": [
"/lodash.union"
],
- "_resolved": "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-4.1.0.tgz",
- "_shasum": "8548ac47576a8dd5f2702cb1ebeae4a980ac3bae",
+ "_resolved": "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-4.1.1.tgz",
+ "_shasum": "5c87403b88f3687a88d26424faadf3aa054aab0d",
"_shrinkwrap": null,
- "_spec": "lodash._baseflatten@^4.0.0",
- "_where": "/Users/rebecca/code/npm/node_modules/lodash.union",
+ "_spec": "lodash._baseflatten@~4.1.0",
+ "_where": "/Users/zkat/Documents/code/npm/node_modules/lodash.union",
"author": {
"email": "john.david.dalton@gmail.com",
"name": "John-David Dalton",
@@ -52,7 +52,7 @@
"url": "http://allyoucanleet.com/"
},
{
- "email": "blaine@iceddev.com",
+ "email": "blaine.bublitz@gmail.com",
"name": "Blaine Bublitz",
"url": "https://github.com/phated"
},
@@ -67,8 +67,8 @@
"devDependencies": {},
"directories": {},
"dist": {
- "shasum": "8548ac47576a8dd5f2702cb1ebeae4a980ac3bae",
- "tarball": "http://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-4.1.0.tgz"
+ "shasum": "5c87403b88f3687a88d26424faadf3aa054aab0d",
+ "tarball": "http://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-4.1.1.tgz"
},
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
@@ -97,5 +97,5 @@
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
- "version": "4.1.0"
+ "version": "4.1.1"
}
diff --git a/node_modules/lodash.union/package.json b/node_modules/lodash.union/package.json
index 2a05b9849..d00522437 100644
--- a/node_modules/lodash.union/package.json
+++ b/node_modules/lodash.union/package.json
@@ -1,42 +1,42 @@
{
"_args": [
[
- "lodash.union@latest",
- "/Users/rebecca/code/npm"
+ "lodash.union@4.2.1",
+ "/Users/zkat/Documents/code/npm"
]
],
- "_from": "lodash.union@latest",
- "_id": "lodash.union@4.2.0",
+ "_from": "lodash.union@4.2.1",
+ "_id": "lodash.union@4.2.1",
"_inCache": true,
"_installable": true,
"_location": "/lodash.union",
"_nodeVersion": "5.5.0",
"_npmOperationalInternal": {
- "host": "packages-9-west.internal.npmjs.com",
- "tmp": "tmp/lodash.union-4.2.0.tgz_1455615727631_0.14597112801857293"
+ "host": "packages-12-west.internal.npmjs.com",
+ "tmp": "tmp/lodash.union-4.2.1.tgz_1459310986493_0.07747984793968499"
},
"_npmUser": {
"email": "john.david.dalton@gmail.com",
"name": "jdalton"
},
- "_npmVersion": "2.14.18",
+ "_npmVersion": "2.15.1",
"_phantomChildren": {},
"_requested": {
"name": "lodash.union",
- "raw": "lodash.union@latest",
- "rawSpec": "latest",
+ "raw": "lodash.union@4.2.1",
+ "rawSpec": "4.2.1",
"scope": null,
- "spec": "latest",
- "type": "tag"
+ "spec": "4.2.1",
+ "type": "version"
},
"_requiredBy": [
"/"
],
- "_resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.2.0.tgz",
- "_shasum": "490c86803d2ed7ca01e26fe53e7d6519e2506505",
+ "_resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.2.1.tgz",
+ "_shasum": "6871017b9b1ff71952c1e2bb2e25b1046a7e2842",
"_shrinkwrap": null,
- "_spec": "lodash.union@latest",
- "_where": "/Users/rebecca/code/npm",
+ "_spec": "lodash.union@4.2.1",
+ "_where": "/Users/zkat/Documents/code/npm",
"author": {
"email": "john.david.dalton@gmail.com",
"name": "John-David Dalton",
@@ -52,7 +52,7 @@
"url": "http://allyoucanleet.com/"
},
{
- "email": "blaine@iceddev.com",
+ "email": "blaine.bublitz@gmail.com",
"name": "Blaine Bublitz",
"url": "https://github.com/phated"
},
@@ -63,16 +63,16 @@
}
],
"dependencies": {
- "lodash._baseflatten": "^4.0.0",
- "lodash._baseuniq": "^4.0.0",
+ "lodash._baseflatten": "~4.1.0",
+ "lodash._baseuniq": "~4.5.0",
"lodash.rest": "^4.0.0"
},
"description": "The lodash method `_.union` exported as a module.",
"devDependencies": {},
"directories": {},
"dist": {
- "shasum": "490c86803d2ed7ca01e26fe53e7d6519e2506505",
- "tarball": "http://registry.npmjs.org/lodash.union/-/lodash.union-4.2.0.tgz"
+ "shasum": "6871017b9b1ff71952c1e2bb2e25b1046a7e2842",
+ "tarball": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.2.1.tgz"
},
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
@@ -105,5 +105,5 @@
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
- "version": "4.2.0"
+ "version": "4.2.1"
}