aboutsummaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/lodash._baseuniq
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/lodash._baseuniq')
-rw-r--r--deps/npm/node_modules/lodash._baseuniq/README.md4
-rw-r--r--deps/npm/node_modules/lodash._baseuniq/index.js5
-rw-r--r--deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/README.md4
-rw-r--r--deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/index.js8
-rw-r--r--deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/package.json42
-rw-r--r--deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/README.md4
-rw-r--r--deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/index.js8
-rw-r--r--deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/package.json36
-rw-r--r--deps/npm/node_modules/lodash._baseuniq/package.json42
9 files changed, 80 insertions, 73 deletions
diff --git a/deps/npm/node_modules/lodash._baseuniq/README.md b/deps/npm/node_modules/lodash._baseuniq/README.md
index 5e73270f91..1d02b801f9 100644
--- a/deps/npm/node_modules/lodash._baseuniq/README.md
+++ b/deps/npm/node_modules/lodash._baseuniq/README.md
@@ -1,4 +1,4 @@
-# lodash._baseuniq v4.5.0
+# lodash._baseuniq v4.5.1
The internal [lodash](https://lodash.com/) function `baseUniq` exported as a [Node.js](https://nodejs.org/) module.
@@ -15,4 +15,4 @@ In Node.js:
var baseUniq = require('lodash._baseuniq');
```
-See the [package source](https://github.com/lodash/lodash/blob/4.5.0-npm-packages/lodash._baseuniq) for more details.
+See the [package source](https://github.com/lodash/lodash/blob/4.5.1-npm-packages/lodash._baseuniq) for more details.
diff --git a/deps/npm/node_modules/lodash._baseuniq/index.js b/deps/npm/node_modules/lodash._baseuniq/index.js
index 894eb34c75..ffdc06f7b5 100644
--- a/deps/npm/node_modules/lodash._baseuniq/index.js
+++ b/deps/npm/node_modules/lodash._baseuniq/index.js
@@ -1,5 +1,5 @@
/**
- * lodash 4.5.0 (Custom Build) <https://lodash.com/>
+ * lodash 4.5.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>
@@ -29,8 +29,7 @@ function arrayIncludes(array, value) {
}
/**
- * A specialized version of `_.includesWith` for arrays without support for
- * specifying an index to search from.
+ * This function is like `arrayIncludes` except that it accepts a comparator.
*
* @private
* @param {Array} array The array to search.
diff --git a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/README.md b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/README.md
index 117109172b..fe6cc9b512 100644
--- a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/README.md
+++ b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/README.md
@@ -1,4 +1,4 @@
-# lodash._createset v4.0.0
+# lodash._createset v4.0.1
The internal [lodash](https://lodash.com/) function `createSet` exported as a [Node.js](https://nodejs.org/) module.
@@ -15,4 +15,4 @@ In Node.js:
var createSet = require('lodash._createset');
```
-See the [package source](https://github.com/lodash/lodash/blob/4.0.0-npm-packages/lodash._createset) for more details.
+See the [package source](https://github.com/lodash/lodash/blob/4.0.1-npm-packages/lodash._createset) for more details.
diff --git a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/index.js b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/index.js
index 3fd2f360d6..8c85b236d1 100644
--- a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/index.js
+++ b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/index.js
@@ -1,5 +1,5 @@
/**
- * lodash 4.0.0 (Custom Build) <https://lodash.com/>
+ * lodash 4.0.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>
@@ -129,7 +129,7 @@ var createSet = !(Set && new Set([1, 2]).size === 2) ? noop : function(values) {
* @returns {*} Returns the function if it's native, else `undefined`.
*/
function getNative(object, key) {
- var value = object == null ? undefined : object[key];
+ var value = object[key];
return isNative(value) ? value : undefined;
}
@@ -151,8 +151,8 @@ function getNative(object, key) {
*/
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/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/package.json b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/package.json
index 62cb810c66..857e620a91 100644
--- a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/package.json
+++ b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._createset/package.json
@@ -1,19 +1,19 @@
{
"_args": [
[
- "lodash._createset@^4.0.0",
- "/Users/rebecca/code/npm/node_modules/lodash._baseuniq"
+ "lodash._createset@~4.0.0",
+ "/Users/zkat/Documents/code/npm/node_modules/lodash._baseuniq"
]
],
- "_from": "lodash._createset@>=4.0.0 <5.0.0",
- "_id": "lodash._createset@4.0.0",
+ "_from": "lodash._createset@>=4.0.0 <4.1.0",
+ "_id": "lodash._createset@4.0.1",
"_inCache": true,
"_installable": true,
"_location": "/lodash._baseuniq/lodash._createset",
"_nodeVersion": "5.5.0",
"_npmOperationalInternal": {
- "host": "packages-6-west.internal.npmjs.com",
- "tmp": "tmp/lodash._createset-4.0.0.tgz_1456330780129_0.0739455302245915"
+ "host": "packages-13-west.internal.npmjs.com",
+ "tmp": "tmp/lodash._createset-4.0.1.tgz_1456896434807_0.3753381560090929"
},
"_npmUser": {
"email": "john.david.dalton@gmail.com",
@@ -23,20 +23,20 @@
"_phantomChildren": {},
"_requested": {
"name": "lodash._createset",
- "raw": "lodash._createset@^4.0.0",
- "rawSpec": "^4.0.0",
+ "raw": "lodash._createset@~4.0.0",
+ "rawSpec": "~4.0.0",
"scope": null,
- "spec": ">=4.0.0 <5.0.0",
+ "spec": ">=4.0.0 <4.1.0",
"type": "range"
},
"_requiredBy": [
"/lodash._baseuniq"
],
- "_resolved": "https://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.0.tgz",
- "_shasum": "92b46092919dd7270e9fab70294feadb3a835822",
+ "_resolved": "https://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.1.tgz",
+ "_shasum": "00e891e3dd386c4512fcb1f49060dfa4d02a9819",
"_shrinkwrap": null,
- "_spec": "lodash._createset@^4.0.0",
- "_where": "/Users/rebecca/code/npm/node_modules/lodash._baseuniq",
+ "_spec": "lodash._createset@~4.0.0",
+ "_where": "/Users/zkat/Documents/code/npm/node_modules/lodash._baseuniq",
"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": "92b46092919dd7270e9fab70294feadb3a835822",
- "tarball": "http://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.0.tgz"
+ "shasum": "00e891e3dd386c4512fcb1f49060dfa4d02a9819",
+ "tarball": "https://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.1.tgz"
},
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
@@ -77,6 +77,14 @@
{
"email": "john.david.dalton@gmail.com",
"name": "jdalton"
+ },
+ {
+ "email": "mathias@qiwi.be",
+ "name": "mathias"
+ },
+ {
+ "email": "blaine.bublitz@gmail.com",
+ "name": "phated"
}
],
"name": "lodash._createset",
@@ -89,5 +97,5 @@
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
- "version": "4.0.0"
+ "version": "4.0.1"
}
diff --git a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/README.md b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/README.md
index 37f7ddfcad..696e7cd135 100644
--- a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/README.md
+++ b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/README.md
@@ -1,4 +1,4 @@
-# lodash._setcache v4.1.0
+# lodash._setcache v4.1.1
The internal [lodash](https://lodash.com/) function `SetCache` exported as a [Node.js](https://nodejs.org/) module.
@@ -15,4 +15,4 @@ In Node.js:
var SetCache = require('lodash._setcache');
```
-See the [package source](https://github.com/lodash/lodash/blob/4.1.0-npm-packages/lodash._setcache) for more details.
+See the [package source](https://github.com/lodash/lodash/blob/4.1.1-npm-packages/lodash._setcache) for more details.
diff --git a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/index.js b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/index.js
index 4260d6390e..dd96de49f1 100644
--- a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/index.js
+++ b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/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>
@@ -415,7 +415,7 @@ function assocSet(array, key, value) {
* @returns {*} Returns the function if it's native, else `undefined`.
*/
function getNative(object, key) {
- var value = object == null ? undefined : object[key];
+ var value = object[key];
return isNative(value) ? value : undefined;
}
@@ -484,8 +484,8 @@ function eq(value, other) {
*/
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/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/package.json b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/package.json
index e8d85999d6..2fedb703b4 100644
--- a/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/package.json
+++ b/deps/npm/node_modules/lodash._baseuniq/node_modules/lodash._setcache/package.json
@@ -1,42 +1,42 @@
{
"_args": [
[
- "lodash._setcache@^4.0.0",
- "/Users/rebecca/code/npm/node_modules/lodash._baseuniq"
+ "lodash._setcache@~4.1.0",
+ "/Users/zkat/Documents/code/npm/node_modules/lodash._baseuniq"
]
],
- "_from": "lodash._setcache@>=4.0.0 <5.0.0",
- "_id": "lodash._setcache@4.1.0",
+ "_from": "lodash._setcache@>=4.1.0 <4.2.0",
+ "_id": "lodash._setcache@4.1.1",
"_inCache": true,
"_installable": true,
"_location": "/lodash._baseuniq/lodash._setcache",
"_nodeVersion": "5.5.0",
"_npmOperationalInternal": {
- "host": "packages-5-east.internal.npmjs.com",
- "tmp": "tmp/lodash._setcache-4.1.0.tgz_1455699934524_0.5983484762255102"
+ "host": "packages-12-west.internal.npmjs.com",
+ "tmp": "tmp/lodash._setcache-4.1.1.tgz_1456896443505_0.39592266851104796"
},
"_npmUser": {
"email": "john.david.dalton@gmail.com",
"name": "jdalton"
},
- "_npmVersion": "2.14.18",
+ "_npmVersion": "2.14.17",
"_phantomChildren": {},
"_requested": {
"name": "lodash._setcache",
- "raw": "lodash._setcache@^4.0.0",
- "rawSpec": "^4.0.0",
+ "raw": "lodash._setcache@~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._baseuniq"
],
- "_resolved": "https://registry.npmjs.org/lodash._setcache/-/lodash._setcache-4.1.0.tgz",
- "_shasum": "ecc48719346faf667343b390b4572a3063f3827c",
+ "_resolved": "https://registry.npmjs.org/lodash._setcache/-/lodash._setcache-4.1.1.tgz",
+ "_shasum": "338f47e49f21ba8bb89e621e7815d781bd4dbd97",
"_shrinkwrap": null,
- "_spec": "lodash._setcache@^4.0.0",
- "_where": "/Users/rebecca/code/npm/node_modules/lodash._baseuniq",
+ "_spec": "lodash._setcache@~4.1.0",
+ "_where": "/Users/zkat/Documents/code/npm/node_modules/lodash._baseuniq",
"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": "ecc48719346faf667343b390b4572a3063f3827c",
- "tarball": "http://registry.npmjs.org/lodash._setcache/-/lodash._setcache-4.1.0.tgz"
+ "shasum": "338f47e49f21ba8bb89e621e7815d781bd4dbd97",
+ "tarball": "https://registry.npmjs.org/lodash._setcache/-/lodash._setcache-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/deps/npm/node_modules/lodash._baseuniq/package.json b/deps/npm/node_modules/lodash._baseuniq/package.json
index c39fc30276..f4cffe5507 100644
--- a/deps/npm/node_modules/lodash._baseuniq/package.json
+++ b/deps/npm/node_modules/lodash._baseuniq/package.json
@@ -1,44 +1,44 @@
{
"_args": [
[
- "lodash._baseuniq@latest",
- "/Users/rebecca/code/npm"
+ "lodash._baseuniq@4.5.1",
+ "/Users/zkat/Documents/code/npm"
]
],
- "_from": "lodash._baseuniq@latest",
- "_id": "lodash._baseuniq@4.5.0",
+ "_from": "lodash._baseuniq@4.5.1",
+ "_id": "lodash._baseuniq@4.5.1",
"_inCache": true,
"_installable": true,
"_location": "/lodash._baseuniq",
"_nodeVersion": "5.5.0",
"_npmOperationalInternal": {
- "host": "packages-5-east.internal.npmjs.com",
- "tmp": "tmp/lodash._baseuniq-4.5.0.tgz_1456330775872_0.6085790924262255"
+ "host": "packages-12-west.internal.npmjs.com",
+ "tmp": "tmp/lodash._baseuniq-4.5.1.tgz_1459310621859_0.6014031588565558"
},
"_npmUser": {
"email": "john.david.dalton@gmail.com",
"name": "jdalton"
},
- "_npmVersion": "2.14.17",
+ "_npmVersion": "2.15.1",
"_phantomChildren": {},
"_requested": {
"name": "lodash._baseuniq",
- "raw": "lodash._baseuniq@latest",
- "rawSpec": "latest",
+ "raw": "lodash._baseuniq@4.5.1",
+ "rawSpec": "4.5.1",
"scope": null,
- "spec": "latest",
- "type": "tag"
+ "spec": "4.5.1",
+ "type": "version"
},
"_requiredBy": [
"/",
"/lodash.union",
"/lodash.uniq"
],
- "_resolved": "https://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.5.0.tgz",
- "_shasum": "50e82673ae56f5fd07160584864648b7e3c528e8",
+ "_resolved": "https://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.5.1.tgz",
+ "_shasum": "1980430c2e64ee86df6dd35794e1a301b2ab74de",
"_shrinkwrap": null,
- "_spec": "lodash._baseuniq@latest",
- "_where": "/Users/rebecca/code/npm",
+ "_spec": "lodash._baseuniq@4.5.1",
+ "_where": "/Users/zkat/Documents/code/npm",
"author": {
"email": "john.david.dalton@gmail.com",
"name": "John-David Dalton",
@@ -54,7 +54,7 @@
"url": "http://allyoucanleet.com/"
},
{
- "email": "blaine@iceddev.com",
+ "email": "blaine.bublitz@gmail.com",
"name": "Blaine Bublitz",
"url": "https://github.com/phated"
},
@@ -65,15 +65,15 @@
}
],
"dependencies": {
- "lodash._createset": "^4.0.0",
- "lodash._setcache": "^4.0.0"
+ "lodash._createset": "~4.0.0",
+ "lodash._setcache": "~4.1.0"
},
"description": "The internal lodash function `baseUniq` exported as a module.",
"devDependencies": {},
"directories": {},
"dist": {
- "shasum": "50e82673ae56f5fd07160584864648b7e3c528e8",
- "tarball": "http://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.5.0.tgz"
+ "shasum": "1980430c2e64ee86df6dd35794e1a301b2ab74de",
+ "tarball": "https://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.5.1.tgz"
},
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
@@ -102,5 +102,5 @@
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
- "version": "4.5.0"
+ "version": "4.5.1"
}