mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 17:47:49 +00:00
Compare commits
21 Commits
4.2.0-npm
...
4.14.0-npm
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a8d3718760 | ||
|
|
295d8cf415 | ||
|
|
0cf3476f14 | ||
|
|
dbe6a9008c | ||
|
|
ddde027fd9 | ||
|
|
e93cb815c3 | ||
|
|
63ba93dcb3 | ||
|
|
be0bf2681b | ||
|
|
7d39d58e43 | ||
|
|
7c17af79c7 | ||
|
|
3f407aa255 | ||
|
|
ee6ec2f672 | ||
|
|
18d0f1d873 | ||
|
|
501d6b1d41 | ||
|
|
ddf9328c67 | ||
|
|
7eeb5ebd61 | ||
|
|
0dd6798d8b | ||
|
|
91d3468c81 | ||
|
|
e2aef0def9 | ||
|
|
bd7f722175 | ||
|
|
d8bc95999f |
29
LICENSE
29
LICENSE
@@ -1,7 +1,17 @@
|
|||||||
Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
Copyright jQuery Foundation and other contributors <https://jquery.org/>
|
||||||
Based on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,
|
|
||||||
|
Based on Underscore.js, copyright Jeremy Ashkenas,
|
||||||
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
|
||||||
|
|
||||||
|
This software consists of voluntary contributions made by many
|
||||||
|
individuals. For exact contribution history, see the revision history
|
||||||
|
available at https://github.com/lodash/lodash
|
||||||
|
|
||||||
|
The following license applies to all parts of this software except as
|
||||||
|
documented below:
|
||||||
|
|
||||||
|
====
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
a copy of this software and associated documentation files (the
|
a copy of this software and associated documentation files (the
|
||||||
"Software"), to deal in the Software without restriction, including
|
"Software"), to deal in the Software without restriction, including
|
||||||
@@ -20,3 +30,18 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|||||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
====
|
||||||
|
|
||||||
|
Copyright and related rights for sample code are waived via CC0. Sample
|
||||||
|
code is defined as all source code displayed within the prose of the
|
||||||
|
documentation.
|
||||||
|
|
||||||
|
CC0: http://creativecommons.org/publicdomain/zero/1.0/
|
||||||
|
|
||||||
|
====
|
||||||
|
|
||||||
|
Files located in the node_modules and vendor directories are externally
|
||||||
|
maintained libraries used by this software which have their own
|
||||||
|
licenses; we recommend you read them, as their terms may differ from the
|
||||||
|
terms above.
|
||||||
|
|||||||
42
README.md
42
README.md
@@ -1,6 +1,6 @@
|
|||||||
# lodash v4.2.0
|
# lodash v4.14.0
|
||||||
|
|
||||||
The [lodash](https://lodash.com/) library exported as [Node.js](https://nodejs.org/) modules.
|
The [Lodash](https://lodash.com/) library exported as [Node.js](https://nodejs.org/) modules.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@@ -12,45 +12,29 @@ $ npm i --save lodash
|
|||||||
|
|
||||||
In Node.js:
|
In Node.js:
|
||||||
```js
|
```js
|
||||||
// load the full build
|
// Load the full build.
|
||||||
var _ = require('lodash');
|
var _ = require('lodash');
|
||||||
// load the core build
|
// Load the core build.
|
||||||
var _ = require('lodash/core');
|
var _ = require('lodash/core');
|
||||||
// load the fp build for immutable auto-curried iteratee-first data-last methods
|
// Load the fp build for immutable auto-curried iteratee-first data-last methods.
|
||||||
var _ = require('lodash/fp');
|
var fp = require('lodash/fp');
|
||||||
|
|
||||||
// or a method category
|
// Load a method category.
|
||||||
var array = require('lodash/array');
|
var array = require('lodash/array');
|
||||||
var object = require('lodash/fp/object');
|
var object = require('lodash/fp/object');
|
||||||
|
|
||||||
// or method for smaller builds with browserify/rollup/webpack
|
// Load a single method for smaller builds with browserify/rollup/webpack.
|
||||||
var chunk = require('lodash/chunk');
|
var chunk = require('lodash/chunk');
|
||||||
var extend = require('lodash/fp/extend');
|
var extend = require('lodash/fp/extend');
|
||||||
```
|
```
|
||||||
|
|
||||||
See the [package source](https://github.com/lodash/lodash/tree/4.2.0-npm) for more details.
|
See the [package source](https://github.com/lodash/lodash/tree/4.14.0-npm) for more details.
|
||||||
|
|
||||||
**Note:**<br>
|
**Note:**<br>
|
||||||
Don’t assign values to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` when in the REPL.<br>
|
Don’t assign values to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` in the Node.js < 6 REPL.<br>
|
||||||
Install [n_](https://www.npmjs.com/package/n_) for a REPL that includes lodash by default.
|
Install [n_](https://www.npmjs.com/package/n_) for a REPL that includes `lodash` by default.
|
||||||
|
|
||||||
## Module formats
|
|
||||||
|
|
||||||
Lodash is available in a variety of other builds & module formats.
|
|
||||||
|
|
||||||
* [lodash](https://www.npmjs.com/package/lodash) & [per method packages](https://www.npmjs.com/browse/keyword/lodash-modularized)
|
|
||||||
* [lodash-amd](https://www.npmjs.com/package/lodash-amd)
|
|
||||||
* [lodash-es](https://www.npmjs.com/package/lodash-es) & [babel-plugin-lodash](https://www.npmjs.com/package/babel-plugin-lodash)
|
|
||||||
|
|
||||||
## Further Reading
|
|
||||||
|
|
||||||
* [API Documentation](https://lodash.com/docs)
|
|
||||||
* [Build Differences](https://github.com/lodash/lodash/wiki/Build-Differences)
|
|
||||||
* [Changelog](https://github.com/lodash/lodash/wiki/Changelog)
|
|
||||||
* [Roadmap](https://github.com/lodash/lodash/wiki/Roadmap)
|
|
||||||
* [More Resources](https://github.com/lodash/lodash/wiki/Resources)
|
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
Tested in Chrome 47-48, Firefox 43-44, IE 9-11, Edge 13, Safari 8-9, Node.js 0.10, 0.12, 4, & 5, & PhantomJS 1.9.8.
|
Tested in Chrome 50-51, Firefox 46-47, IE 9-11, Edge 13, Safari 8-9, Node.js 0.10-6, & PhantomJS 1.9.8.<br>
|
||||||
Automated [browser](https://saucelabs.com/u/lodash) & [CI](https://travis-ci.org/lodash/lodash/) test runs are available. Special thanks to [Sauce Labs](https://saucelabs.com/) for providing automated browser testing.
|
Automated [browser](https://saucelabs.com/u/lodash) & [CI](https://travis-ci.org/lodash/lodash/) test runs are available.
|
||||||
|
|||||||
7
_DataView.js
Normal file
7
_DataView.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
var getNative = require('./_getNative'),
|
||||||
|
root = require('./_root');
|
||||||
|
|
||||||
|
/* Built-in method references that are verified to be native. */
|
||||||
|
var DataView = getNative(root, 'DataView');
|
||||||
|
|
||||||
|
module.exports = DataView;
|
||||||
33
_Hash.js
33
_Hash.js
@@ -1,17 +1,32 @@
|
|||||||
var nativeCreate = require('./_nativeCreate');
|
var hashClear = require('./_hashClear'),
|
||||||
|
hashDelete = require('./_hashDelete'),
|
||||||
/** Used for built-in method references. */
|
hashGet = require('./_hashGet'),
|
||||||
var objectProto = Object.prototype;
|
hashHas = require('./_hashHas'),
|
||||||
|
hashSet = require('./_hashSet');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an hash object.
|
* Creates a hash object.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @returns {Object} Returns the new hash object.
|
* @constructor
|
||||||
|
* @param {Array} [entries] The key-value pairs to cache.
|
||||||
*/
|
*/
|
||||||
function Hash() {}
|
function Hash(entries) {
|
||||||
|
var index = -1,
|
||||||
|
length = entries ? entries.length : 0;
|
||||||
|
|
||||||
// Avoid inheriting from `Object.prototype` when possible.
|
this.clear();
|
||||||
Hash.prototype = nativeCreate ? nativeCreate(null) : objectProto;
|
while (++index < length) {
|
||||||
|
var entry = entries[index];
|
||||||
|
this.set(entry[0], entry[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add methods to `Hash`.
|
||||||
|
Hash.prototype.clear = hashClear;
|
||||||
|
Hash.prototype['delete'] = hashDelete;
|
||||||
|
Hash.prototype.get = hashGet;
|
||||||
|
Hash.prototype.has = hashHas;
|
||||||
|
Hash.prototype.set = hashSet;
|
||||||
|
|
||||||
module.exports = Hash;
|
module.exports = Hash;
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ var MAX_ARRAY_LENGTH = 4294967295;
|
|||||||
* Creates a lazy wrapper object which wraps `value` to enable lazy evaluation.
|
* Creates a lazy wrapper object which wraps `value` to enable lazy evaluation.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
|
* @constructor
|
||||||
* @param {*} value The value to wrap.
|
* @param {*} value The value to wrap.
|
||||||
*/
|
*/
|
||||||
function LazyWrapper(value) {
|
function LazyWrapper(value) {
|
||||||
@@ -20,6 +21,7 @@ function LazyWrapper(value) {
|
|||||||
this.__views__ = [];
|
this.__views__ = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ensure `LazyWrapper` is an instance of `baseLodash`.
|
||||||
LazyWrapper.prototype = baseCreate(baseLodash.prototype);
|
LazyWrapper.prototype = baseCreate(baseLodash.prototype);
|
||||||
LazyWrapper.prototype.constructor = LazyWrapper;
|
LazyWrapper.prototype.constructor = LazyWrapper;
|
||||||
|
|
||||||
|
|||||||
32
_ListCache.js
Normal file
32
_ListCache.js
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
var listCacheClear = require('./_listCacheClear'),
|
||||||
|
listCacheDelete = require('./_listCacheDelete'),
|
||||||
|
listCacheGet = require('./_listCacheGet'),
|
||||||
|
listCacheHas = require('./_listCacheHas'),
|
||||||
|
listCacheSet = require('./_listCacheSet');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates an list cache object.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @constructor
|
||||||
|
* @param {Array} [entries] The key-value pairs to cache.
|
||||||
|
*/
|
||||||
|
function ListCache(entries) {
|
||||||
|
var index = -1,
|
||||||
|
length = entries ? entries.length : 0;
|
||||||
|
|
||||||
|
this.clear();
|
||||||
|
while (++index < length) {
|
||||||
|
var entry = entries[index];
|
||||||
|
this.set(entry[0], entry[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add methods to `ListCache`.
|
||||||
|
ListCache.prototype.clear = listCacheClear;
|
||||||
|
ListCache.prototype['delete'] = listCacheDelete;
|
||||||
|
ListCache.prototype.get = listCacheGet;
|
||||||
|
ListCache.prototype.has = listCacheHas;
|
||||||
|
ListCache.prototype.set = listCacheSet;
|
||||||
|
|
||||||
|
module.exports = ListCache;
|
||||||
@@ -6,7 +6,7 @@ var baseCreate = require('./_baseCreate'),
|
|||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {*} value The value to wrap.
|
* @param {*} value The value to wrap.
|
||||||
* @param {boolean} [chainAll] Enable chaining for all wrapper methods.
|
* @param {boolean} [chainAll] Enable explicit method chain sequences.
|
||||||
*/
|
*/
|
||||||
function LodashWrapper(value, chainAll) {
|
function LodashWrapper(value, chainAll) {
|
||||||
this.__wrapped__ = value;
|
this.__wrapped__ = value;
|
||||||
|
|||||||
31
_MapCache.js
31
_MapCache.js
@@ -1,31 +1,32 @@
|
|||||||
var mapClear = require('./_mapClear'),
|
var mapCacheClear = require('./_mapCacheClear'),
|
||||||
mapDelete = require('./_mapDelete'),
|
mapCacheDelete = require('./_mapCacheDelete'),
|
||||||
mapGet = require('./_mapGet'),
|
mapCacheGet = require('./_mapCacheGet'),
|
||||||
mapHas = require('./_mapHas'),
|
mapCacheHas = require('./_mapCacheHas'),
|
||||||
mapSet = require('./_mapSet');
|
mapCacheSet = require('./_mapCacheSet');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a map cache object to store key-value pairs.
|
* Creates a map cache object to store key-value pairs.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} [values] The values to cache.
|
* @constructor
|
||||||
|
* @param {Array} [entries] The key-value pairs to cache.
|
||||||
*/
|
*/
|
||||||
function MapCache(values) {
|
function MapCache(entries) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = values ? values.length : 0;
|
length = entries ? entries.length : 0;
|
||||||
|
|
||||||
this.clear();
|
this.clear();
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
var entry = values[index];
|
var entry = entries[index];
|
||||||
this.set(entry[0], entry[1]);
|
this.set(entry[0], entry[1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add functions to the `MapCache`.
|
// Add methods to `MapCache`.
|
||||||
MapCache.prototype.clear = mapClear;
|
MapCache.prototype.clear = mapCacheClear;
|
||||||
MapCache.prototype['delete'] = mapDelete;
|
MapCache.prototype['delete'] = mapCacheDelete;
|
||||||
MapCache.prototype.get = mapGet;
|
MapCache.prototype.get = mapCacheGet;
|
||||||
MapCache.prototype.has = mapHas;
|
MapCache.prototype.has = mapCacheHas;
|
||||||
MapCache.prototype.set = mapSet;
|
MapCache.prototype.set = mapCacheSet;
|
||||||
|
|
||||||
module.exports = MapCache;
|
module.exports = MapCache;
|
||||||
|
|||||||
7
_Promise.js
Normal file
7
_Promise.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
var getNative = require('./_getNative'),
|
||||||
|
root = require('./_root');
|
||||||
|
|
||||||
|
/* Built-in method references that are verified to be native. */
|
||||||
|
var Promise = getNative(root, 'Promise');
|
||||||
|
|
||||||
|
module.exports = Promise;
|
||||||
13
_SetCache.js
13
_SetCache.js
@@ -1,11 +1,13 @@
|
|||||||
var MapCache = require('./_MapCache'),
|
var MapCache = require('./_MapCache'),
|
||||||
cachePush = require('./_cachePush');
|
setCacheAdd = require('./_setCacheAdd'),
|
||||||
|
setCacheHas = require('./_setCacheHas');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Creates a set cache object to store unique values.
|
* Creates an array cache object to store unique values.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
|
* @constructor
|
||||||
* @param {Array} [values] The values to cache.
|
* @param {Array} [values] The values to cache.
|
||||||
*/
|
*/
|
||||||
function SetCache(values) {
|
function SetCache(values) {
|
||||||
@@ -14,11 +16,12 @@ function SetCache(values) {
|
|||||||
|
|
||||||
this.__data__ = new MapCache;
|
this.__data__ = new MapCache;
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
this.push(values[index]);
|
this.add(values[index]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add functions to the `SetCache`.
|
// Add methods to `SetCache`.
|
||||||
SetCache.prototype.push = cachePush;
|
SetCache.prototype.add = SetCache.prototype.push = setCacheAdd;
|
||||||
|
SetCache.prototype.has = setCacheHas;
|
||||||
|
|
||||||
module.exports = SetCache;
|
module.exports = SetCache;
|
||||||
|
|||||||
19
_Stack.js
19
_Stack.js
@@ -1,4 +1,5 @@
|
|||||||
var stackClear = require('./_stackClear'),
|
var ListCache = require('./_ListCache'),
|
||||||
|
stackClear = require('./_stackClear'),
|
||||||
stackDelete = require('./_stackDelete'),
|
stackDelete = require('./_stackDelete'),
|
||||||
stackGet = require('./_stackGet'),
|
stackGet = require('./_stackGet'),
|
||||||
stackHas = require('./_stackHas'),
|
stackHas = require('./_stackHas'),
|
||||||
@@ -8,20 +9,14 @@ var stackClear = require('./_stackClear'),
|
|||||||
* Creates a stack cache object to store key-value pairs.
|
* Creates a stack cache object to store key-value pairs.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} [values] The values to cache.
|
* @constructor
|
||||||
|
* @param {Array} [entries] The key-value pairs to cache.
|
||||||
*/
|
*/
|
||||||
function Stack(values) {
|
function Stack(entries) {
|
||||||
var index = -1,
|
this.__data__ = new ListCache(entries);
|
||||||
length = values ? values.length : 0;
|
|
||||||
|
|
||||||
this.clear();
|
|
||||||
while (++index < length) {
|
|
||||||
var entry = values[index];
|
|
||||||
this.set(entry[0], entry[1]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add functions to the `Stack` cache.
|
// Add methods to `Stack`.
|
||||||
Stack.prototype.clear = stackClear;
|
Stack.prototype.clear = stackClear;
|
||||||
Stack.prototype['delete'] = stackDelete;
|
Stack.prototype['delete'] = stackDelete;
|
||||||
Stack.prototype.get = stackGet;
|
Stack.prototype.get = stackGet;
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
* @returns {Object} Returns `map`.
|
* @returns {Object} Returns `map`.
|
||||||
*/
|
*/
|
||||||
function addMapEntry(map, pair) {
|
function addMapEntry(map, pair) {
|
||||||
|
// Don't return `map.set` because it's not chainable in IE 11.
|
||||||
map.set(pair[0], pair[1]);
|
map.set(pair[0], pair[1]);
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
* @returns {Object} Returns `set`.
|
* @returns {Object} Returns `set`.
|
||||||
*/
|
*/
|
||||||
function addSetEntry(set, value) {
|
function addSetEntry(set, value) {
|
||||||
|
// Don't return `set.add` because it's not chainable in IE 11.
|
||||||
set.add(value);
|
set.add(value);
|
||||||
return set;
|
return set;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,12 +5,11 @@
|
|||||||
* @private
|
* @private
|
||||||
* @param {Function} func The function to invoke.
|
* @param {Function} func The function to invoke.
|
||||||
* @param {*} thisArg The `this` binding of `func`.
|
* @param {*} thisArg The `this` binding of `func`.
|
||||||
* @param {...*} args The arguments to invoke `func` with.
|
* @param {Array} args The arguments to invoke `func` with.
|
||||||
* @returns {*} Returns the result of `func`.
|
* @returns {*} Returns the result of `func`.
|
||||||
*/
|
*/
|
||||||
function apply(func, thisArg, args) {
|
function apply(func, thisArg, args) {
|
||||||
var length = args.length;
|
switch (args.length) {
|
||||||
switch (length) {
|
|
||||||
case 0: return func.call(thisArg);
|
case 0: return func.call(thisArg);
|
||||||
case 1: return func.call(thisArg, args[0]);
|
case 1: return func.call(thisArg, args[0]);
|
||||||
case 2: return func.call(thisArg, args[0], args[1]);
|
case 2: return func.call(thisArg, args[0], args[1]);
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* A specialized version of `baseAggregator` for arrays.
|
* A specialized version of `baseAggregator` for arrays.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} [array] The array to iterate over.
|
||||||
* @param {Function} setter The function to set `accumulator` values.
|
* @param {Function} setter The function to set `accumulator` values.
|
||||||
* @param {Function} iteratee The iteratee to transform keys.
|
* @param {Function} iteratee The iteratee to transform keys.
|
||||||
* @param {Object} accumulator The initial aggregated object.
|
* @param {Object} accumulator The initial aggregated object.
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
function arrayAggregator(array, setter, iteratee, accumulator) {
|
function arrayAggregator(array, setter, iteratee, accumulator) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length;
|
length = array ? array.length : 0;
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
var value = array[index];
|
var value = array[index];
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
/**
|
|
||||||
* Creates a new array concatenating `array` with `other`.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @param {Array} array The first array to concatenate.
|
|
||||||
* @param {Array} other The second array to concatenate.
|
|
||||||
* @returns {Array} Returns the new concatenated array.
|
|
||||||
*/
|
|
||||||
function arrayConcat(array, other) {
|
|
||||||
var index = -1,
|
|
||||||
length = array.length,
|
|
||||||
othIndex = -1,
|
|
||||||
othLength = other.length,
|
|
||||||
result = Array(length + othLength);
|
|
||||||
|
|
||||||
while (++index < length) {
|
|
||||||
result[index] = array[index];
|
|
||||||
}
|
|
||||||
while (++othIndex < othLength) {
|
|
||||||
result[index++] = other[othIndex];
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = arrayConcat;
|
|
||||||
@@ -3,13 +3,13 @@
|
|||||||
* iteratee shorthands.
|
* iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} [array] The array to iterate over.
|
||||||
* @param {Function} iteratee The function invoked per iteration.
|
* @param {Function} iteratee The function invoked per iteration.
|
||||||
* @returns {Array} Returns `array`.
|
* @returns {Array} Returns `array`.
|
||||||
*/
|
*/
|
||||||
function arrayEach(array, iteratee) {
|
function arrayEach(array, iteratee) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length;
|
length = array ? array.length : 0;
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
if (iteratee(array[index], index, array) === false) {
|
if (iteratee(array[index], index, array) === false) {
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
* iteratee shorthands.
|
* iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} [array] The array to iterate over.
|
||||||
* @param {Function} iteratee The function invoked per iteration.
|
* @param {Function} iteratee The function invoked per iteration.
|
||||||
* @returns {Array} Returns `array`.
|
* @returns {Array} Returns `array`.
|
||||||
*/
|
*/
|
||||||
function arrayEachRight(array, iteratee) {
|
function arrayEachRight(array, iteratee) {
|
||||||
var length = array.length;
|
var length = array ? array.length : 0;
|
||||||
|
|
||||||
while (length--) {
|
while (length--) {
|
||||||
if (iteratee(array[length], length, array) === false) {
|
if (iteratee(array[length], length, array) === false) {
|
||||||
|
|||||||
@@ -3,13 +3,14 @@
|
|||||||
* iteratee shorthands.
|
* iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} [array] The array to iterate over.
|
||||||
* @param {Function} predicate The function invoked per iteration.
|
* @param {Function} predicate The function invoked per iteration.
|
||||||
* @returns {boolean} Returns `true` if all elements pass the predicate check, else `false`.
|
* @returns {boolean} Returns `true` if all elements pass the predicate check,
|
||||||
|
* else `false`.
|
||||||
*/
|
*/
|
||||||
function arrayEvery(array, predicate) {
|
function arrayEvery(array, predicate) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length;
|
length = array ? array.length : 0;
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
if (!predicate(array[index], index, array)) {
|
if (!predicate(array[index], index, array)) {
|
||||||
|
|||||||
@@ -3,20 +3,20 @@
|
|||||||
* iteratee shorthands.
|
* iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} [array] The array to iterate over.
|
||||||
* @param {Function} predicate The function invoked per iteration.
|
* @param {Function} predicate The function invoked per iteration.
|
||||||
* @returns {Array} Returns the new filtered array.
|
* @returns {Array} Returns the new filtered array.
|
||||||
*/
|
*/
|
||||||
function arrayFilter(array, predicate) {
|
function arrayFilter(array, predicate) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length,
|
length = array ? array.length : 0,
|
||||||
resIndex = -1,
|
resIndex = 0,
|
||||||
result = [];
|
result = [];
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
var value = array[index];
|
var value = array[index];
|
||||||
if (predicate(value, index, array)) {
|
if (predicate(value, index, array)) {
|
||||||
result[++resIndex] = value;
|
result[resIndex++] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
@@ -5,12 +5,13 @@ var baseIndexOf = require('./_baseIndexOf');
|
|||||||
* specifying an index to search from.
|
* specifying an index to search from.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to search.
|
* @param {Array} [array] The array to search.
|
||||||
* @param {*} target The value to search for.
|
* @param {*} target The value to search for.
|
||||||
* @returns {boolean} Returns `true` if `target` is found, else `false`.
|
* @returns {boolean} Returns `true` if `target` is found, else `false`.
|
||||||
*/
|
*/
|
||||||
function arrayIncludes(array, value) {
|
function arrayIncludes(array, value) {
|
||||||
return !!array.length && baseIndexOf(array, value, 0) > -1;
|
var length = array ? array.length : 0;
|
||||||
|
return !!length && baseIndexOf(array, value, 0) > -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = arrayIncludes;
|
module.exports = arrayIncludes;
|
||||||
|
|||||||
@@ -1,16 +1,15 @@
|
|||||||
/**
|
/**
|
||||||
* A specialized version of `_.includesWith` for arrays without support for
|
* This function is like `arrayIncludes` except that it accepts a comparator.
|
||||||
* specifying an index to search from.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to search.
|
* @param {Array} [array] The array to search.
|
||||||
* @param {*} target The value to search for.
|
* @param {*} target The value to search for.
|
||||||
* @param {Function} comparator The comparator invoked per element.
|
* @param {Function} comparator The comparator invoked per element.
|
||||||
* @returns {boolean} Returns `true` if `target` is found, else `false`.
|
* @returns {boolean} Returns `true` if `target` is found, else `false`.
|
||||||
*/
|
*/
|
||||||
function arrayIncludesWith(array, value, comparator) {
|
function arrayIncludesWith(array, value, comparator) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length;
|
length = array ? array.length : 0;
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
if (comparator(value, array[index])) {
|
if (comparator(value, array[index])) {
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
* shorthands.
|
* shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} [array] The array to iterate over.
|
||||||
* @param {Function} iteratee The function invoked per iteration.
|
* @param {Function} iteratee The function invoked per iteration.
|
||||||
* @returns {Array} Returns the new mapped array.
|
* @returns {Array} Returns the new mapped array.
|
||||||
*/
|
*/
|
||||||
function arrayMap(array, iteratee) {
|
function arrayMap(array, iteratee) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length,
|
length = array ? array.length : 0,
|
||||||
result = Array(length);
|
result = Array(length);
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
|
|||||||
@@ -3,15 +3,16 @@
|
|||||||
* iteratee shorthands.
|
* iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} [array] The array to iterate over.
|
||||||
* @param {Function} iteratee The function invoked per iteration.
|
* @param {Function} iteratee The function invoked per iteration.
|
||||||
* @param {*} [accumulator] The initial value.
|
* @param {*} [accumulator] The initial value.
|
||||||
* @param {boolean} [initAccum] Specify using the first element of `array` as the initial value.
|
* @param {boolean} [initAccum] Specify using the first element of `array` as
|
||||||
|
* the initial value.
|
||||||
* @returns {*} Returns the accumulated value.
|
* @returns {*} Returns the accumulated value.
|
||||||
*/
|
*/
|
||||||
function arrayReduce(array, iteratee, accumulator, initAccum) {
|
function arrayReduce(array, iteratee, accumulator, initAccum) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length;
|
length = array ? array.length : 0;
|
||||||
|
|
||||||
if (initAccum && length) {
|
if (initAccum && length) {
|
||||||
accumulator = array[++index];
|
accumulator = array[++index];
|
||||||
|
|||||||
@@ -3,14 +3,15 @@
|
|||||||
* iteratee shorthands.
|
* iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} [array] The array to iterate over.
|
||||||
* @param {Function} iteratee The function invoked per iteration.
|
* @param {Function} iteratee The function invoked per iteration.
|
||||||
* @param {*} [accumulator] The initial value.
|
* @param {*} [accumulator] The initial value.
|
||||||
* @param {boolean} [initAccum] Specify using the last element of `array` as the initial value.
|
* @param {boolean} [initAccum] Specify using the last element of `array` as
|
||||||
|
* the initial value.
|
||||||
* @returns {*} Returns the accumulated value.
|
* @returns {*} Returns the accumulated value.
|
||||||
*/
|
*/
|
||||||
function arrayReduceRight(array, iteratee, accumulator, initAccum) {
|
function arrayReduceRight(array, iteratee, accumulator, initAccum) {
|
||||||
var length = array.length;
|
var length = array ? array.length : 0;
|
||||||
if (initAccum && length) {
|
if (initAccum && length) {
|
||||||
accumulator = array[--length];
|
accumulator = array[--length];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,13 +3,14 @@
|
|||||||
* shorthands.
|
* shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} [array] The array to iterate over.
|
||||||
* @param {Function} predicate The function invoked per iteration.
|
* @param {Function} predicate The function invoked per iteration.
|
||||||
* @returns {boolean} Returns `true` if any element passes the predicate check, else `false`.
|
* @returns {boolean} Returns `true` if any element passes the predicate check,
|
||||||
|
* else `false`.
|
||||||
*/
|
*/
|
||||||
function arraySome(array, predicate) {
|
function arraySome(array, predicate) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length;
|
length = array ? array.length : 0;
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
if (predicate(array[index], index, array)) {
|
if (predicate(array[index], index, array)) {
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
var eq = require('./eq');
|
var eq = require('./eq');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function is like `assignValue` except that it doesn't assign `undefined` values.
|
* This function is like `assignValue` except that it doesn't assign
|
||||||
|
* `undefined` values.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to modify.
|
* @param {Object} object The object to modify.
|
||||||
|
|||||||
@@ -18,8 +18,7 @@ var hasOwnProperty = objectProto.hasOwnProperty;
|
|||||||
*/
|
*/
|
||||||
function assignValue(object, key, value) {
|
function assignValue(object, key, value) {
|
||||||
var objValue = object[key];
|
var objValue = object[key];
|
||||||
if ((!eq(objValue, value) ||
|
if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||
|
||||||
(eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) ||
|
|
||||||
(value === undefined && !(key in object))) {
|
(value === undefined && !(key in object))) {
|
||||||
object[key] = value;
|
object[key] = value;
|
||||||
}
|
}
|
||||||
|
|||||||
16
_assocGet.js
16
_assocGet.js
@@ -1,16 +0,0 @@
|
|||||||
var assocIndexOf = require('./_assocIndexOf');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the associative array value for `key`.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @param {Array} array The array to query.
|
|
||||||
* @param {string} key The key of the value to get.
|
|
||||||
* @returns {*} Returns the entry value.
|
|
||||||
*/
|
|
||||||
function assocGet(array, key) {
|
|
||||||
var index = assocIndexOf(array, key);
|
|
||||||
return index < 0 ? undefined : array[index][1];
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = assocGet;
|
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
var eq = require('./eq');
|
var eq = require('./eq');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the index at which the first occurrence of `key` is found in `array`
|
* Gets the index at which the `key` is found in `array` of key-value pairs.
|
||||||
* of key-value pairs.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to search.
|
* @param {Array} array The array to search.
|
||||||
|
|||||||
20
_assocSet.js
20
_assocSet.js
@@ -1,20 +0,0 @@
|
|||||||
var assocIndexOf = require('./_assocIndexOf');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the associative array `key` to `value`.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @param {Array} array The array to modify.
|
|
||||||
* @param {string} key The key of the value to set.
|
|
||||||
* @param {*} value The value to set.
|
|
||||||
*/
|
|
||||||
function assocSet(array, key, value) {
|
|
||||||
var index = assocIndexOf(array, key);
|
|
||||||
if (index < 0) {
|
|
||||||
array.push([key, value]);
|
|
||||||
} else {
|
|
||||||
array[index][1] = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = assocSet;
|
|
||||||
@@ -6,7 +6,7 @@ var get = require('./get');
|
|||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to iterate over.
|
* @param {Object} object The object to iterate over.
|
||||||
* @param {string[]} paths The property paths of elements to pick.
|
* @param {string[]} paths The property paths of elements to pick.
|
||||||
* @returns {Array} Returns the new array of picked elements.
|
* @returns {Array} Returns the picked elements.
|
||||||
*/
|
*/
|
||||||
function baseAt(object, paths) {
|
function baseAt(object, paths) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* The base implementation of `_.clamp` which doesn't coerce arguments to numbers.
|
* The base implementation of `_.clamp` which doesn't coerce arguments.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {number} number The number to clamp.
|
* @param {number} number The number to clamp.
|
||||||
|
|||||||
@@ -2,16 +2,19 @@ var Stack = require('./_Stack'),
|
|||||||
arrayEach = require('./_arrayEach'),
|
arrayEach = require('./_arrayEach'),
|
||||||
assignValue = require('./_assignValue'),
|
assignValue = require('./_assignValue'),
|
||||||
baseAssign = require('./_baseAssign'),
|
baseAssign = require('./_baseAssign'),
|
||||||
baseForOwn = require('./_baseForOwn'),
|
cloneBuffer = require('./_cloneBuffer'),
|
||||||
copyArray = require('./_copyArray'),
|
copyArray = require('./_copyArray'),
|
||||||
copySymbols = require('./_copySymbols'),
|
copySymbols = require('./_copySymbols'),
|
||||||
|
getAllKeys = require('./_getAllKeys'),
|
||||||
getTag = require('./_getTag'),
|
getTag = require('./_getTag'),
|
||||||
initCloneArray = require('./_initCloneArray'),
|
initCloneArray = require('./_initCloneArray'),
|
||||||
initCloneByTag = require('./_initCloneByTag'),
|
initCloneByTag = require('./_initCloneByTag'),
|
||||||
initCloneObject = require('./_initCloneObject'),
|
initCloneObject = require('./_initCloneObject'),
|
||||||
isArray = require('./isArray'),
|
isArray = require('./isArray'),
|
||||||
|
isBuffer = require('./isBuffer'),
|
||||||
isHostObject = require('./_isHostObject'),
|
isHostObject = require('./_isHostObject'),
|
||||||
isObject = require('./isObject');
|
isObject = require('./isObject'),
|
||||||
|
keys = require('./keys');
|
||||||
|
|
||||||
/** `Object#toString` result references. */
|
/** `Object#toString` result references. */
|
||||||
var argsTag = '[object Arguments]',
|
var argsTag = '[object Arguments]',
|
||||||
@@ -31,6 +34,7 @@ var argsTag = '[object Arguments]',
|
|||||||
weakMapTag = '[object WeakMap]';
|
weakMapTag = '[object WeakMap]';
|
||||||
|
|
||||||
var arrayBufferTag = '[object ArrayBuffer]',
|
var arrayBufferTag = '[object ArrayBuffer]',
|
||||||
|
dataViewTag = '[object DataView]',
|
||||||
float32Tag = '[object Float32Array]',
|
float32Tag = '[object Float32Array]',
|
||||||
float64Tag = '[object Float64Array]',
|
float64Tag = '[object Float64Array]',
|
||||||
int8Tag = '[object Int8Array]',
|
int8Tag = '[object Int8Array]',
|
||||||
@@ -44,16 +48,16 @@ var arrayBufferTag = '[object ArrayBuffer]',
|
|||||||
/** Used to identify `toStringTag` values supported by `_.clone`. */
|
/** Used to identify `toStringTag` values supported by `_.clone`. */
|
||||||
var cloneableTags = {};
|
var cloneableTags = {};
|
||||||
cloneableTags[argsTag] = cloneableTags[arrayTag] =
|
cloneableTags[argsTag] = cloneableTags[arrayTag] =
|
||||||
cloneableTags[arrayBufferTag] = cloneableTags[boolTag] =
|
cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] =
|
||||||
cloneableTags[dateTag] = cloneableTags[float32Tag] =
|
cloneableTags[boolTag] = cloneableTags[dateTag] =
|
||||||
cloneableTags[float64Tag] = cloneableTags[int8Tag] =
|
cloneableTags[float32Tag] = cloneableTags[float64Tag] =
|
||||||
cloneableTags[int16Tag] = cloneableTags[int32Tag] =
|
cloneableTags[int8Tag] = cloneableTags[int16Tag] =
|
||||||
cloneableTags[mapTag] = cloneableTags[numberTag] =
|
cloneableTags[int32Tag] = cloneableTags[mapTag] =
|
||||||
cloneableTags[objectTag] = cloneableTags[regexpTag] =
|
cloneableTags[numberTag] = cloneableTags[objectTag] =
|
||||||
cloneableTags[setTag] = cloneableTags[stringTag] =
|
cloneableTags[regexpTag] = cloneableTags[setTag] =
|
||||||
cloneableTags[symbolTag] = cloneableTags[uint8Tag] =
|
cloneableTags[stringTag] = cloneableTags[symbolTag] =
|
||||||
cloneableTags[uint8ClampedTag] = cloneableTags[uint16Tag] =
|
cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] =
|
||||||
cloneableTags[uint32Tag] = true;
|
cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;
|
||||||
cloneableTags[errorTag] = cloneableTags[funcTag] =
|
cloneableTags[errorTag] = cloneableTags[funcTag] =
|
||||||
cloneableTags[weakMapTag] = false;
|
cloneableTags[weakMapTag] = false;
|
||||||
|
|
||||||
@@ -64,13 +68,14 @@ cloneableTags[weakMapTag] = false;
|
|||||||
* @private
|
* @private
|
||||||
* @param {*} value The value to clone.
|
* @param {*} value The value to clone.
|
||||||
* @param {boolean} [isDeep] Specify a deep clone.
|
* @param {boolean} [isDeep] Specify a deep clone.
|
||||||
|
* @param {boolean} [isFull] Specify a clone including symbols.
|
||||||
* @param {Function} [customizer] The function to customize cloning.
|
* @param {Function} [customizer] The function to customize cloning.
|
||||||
* @param {string} [key] The key of `value`.
|
* @param {string} [key] The key of `value`.
|
||||||
* @param {Object} [object] The parent object of `value`.
|
* @param {Object} [object] The parent object of `value`.
|
||||||
* @param {Object} [stack] Tracks traversed objects and their clone counterparts.
|
* @param {Object} [stack] Tracks traversed objects and their clone counterparts.
|
||||||
* @returns {*} Returns the cloned value.
|
* @returns {*} Returns the cloned value.
|
||||||
*/
|
*/
|
||||||
function baseClone(value, isDeep, customizer, key, object, stack) {
|
function baseClone(value, isDeep, isFull, customizer, key, object, stack) {
|
||||||
var result;
|
var result;
|
||||||
if (customizer) {
|
if (customizer) {
|
||||||
result = object ? customizer(value, key, object, stack) : customizer(value);
|
result = object ? customizer(value, key, object, stack) : customizer(value);
|
||||||
@@ -91,6 +96,9 @@ function baseClone(value, isDeep, customizer, key, object, stack) {
|
|||||||
var tag = getTag(value),
|
var tag = getTag(value),
|
||||||
isFunc = tag == funcTag || tag == genTag;
|
isFunc = tag == funcTag || tag == genTag;
|
||||||
|
|
||||||
|
if (isBuffer(value)) {
|
||||||
|
return cloneBuffer(value, isDeep);
|
||||||
|
}
|
||||||
if (tag == objectTag || tag == argsTag || (isFunc && !object)) {
|
if (tag == objectTag || tag == argsTag || (isFunc && !object)) {
|
||||||
if (isHostObject(value)) {
|
if (isHostObject(value)) {
|
||||||
return object ? value : {};
|
return object ? value : {};
|
||||||
@@ -100,9 +108,10 @@ function baseClone(value, isDeep, customizer, key, object, stack) {
|
|||||||
return copySymbols(value, baseAssign(result, value));
|
return copySymbols(value, baseAssign(result, value));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return cloneableTags[tag]
|
if (!cloneableTags[tag]) {
|
||||||
? initCloneByTag(value, tag, isDeep)
|
return object ? value : {};
|
||||||
: (object ? value : {});
|
}
|
||||||
|
result = initCloneByTag(value, tag, baseClone, isDeep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Check for circular references and return its corresponding clone.
|
// Check for circular references and return its corresponding clone.
|
||||||
@@ -113,11 +122,21 @@ function baseClone(value, isDeep, customizer, key, object, stack) {
|
|||||||
}
|
}
|
||||||
stack.set(value, result);
|
stack.set(value, result);
|
||||||
|
|
||||||
// Recursively populate clone (susceptible to call stack limits).
|
if (!isArr) {
|
||||||
(isArr ? arrayEach : baseForOwn)(value, function(subValue, key) {
|
var props = isFull ? getAllKeys(value) : keys(value);
|
||||||
assignValue(result, key, baseClone(subValue, isDeep, customizer, key, value, stack));
|
}
|
||||||
|
arrayEach(props || value, function(subValue, key) {
|
||||||
|
if (props) {
|
||||||
|
key = subValue;
|
||||||
|
subValue = value[key];
|
||||||
|
}
|
||||||
|
// Recursively populate clone (susceptible to call stack limits).
|
||||||
|
assignValue(result, key, baseClone(subValue, isDeep, isFull, customizer, key, value, stack));
|
||||||
});
|
});
|
||||||
return isArr ? result : copySymbols(value, result);
|
if (!isFull) {
|
||||||
|
stack['delete'](value);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseClone;
|
module.exports = baseClone;
|
||||||
|
|||||||
@@ -1,31 +1,17 @@
|
|||||||
var keys = require('./keys');
|
var baseConformsTo = require('./_baseConformsTo'),
|
||||||
|
keys = require('./keys');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.conforms` which doesn't clone `source`.
|
* The base implementation of `_.conforms` which doesn't clone `source`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} source The object of property predicates to conform to.
|
* @param {Object} source The object of property predicates to conform to.
|
||||||
* @returns {Function} Returns the new function.
|
* @returns {Function} Returns the new spec function.
|
||||||
*/
|
*/
|
||||||
function baseConforms(source) {
|
function baseConforms(source) {
|
||||||
var props = keys(source),
|
var props = keys(source);
|
||||||
length = props.length;
|
|
||||||
|
|
||||||
return function(object) {
|
return function(object) {
|
||||||
if (object == null) {
|
return baseConformsTo(object, source, props);
|
||||||
return !length;
|
|
||||||
}
|
|
||||||
var index = length;
|
|
||||||
while (index--) {
|
|
||||||
var key = props[index],
|
|
||||||
predicate = source[key],
|
|
||||||
value = object[key];
|
|
||||||
|
|
||||||
if ((value === undefined && !(key in Object(object))) || !predicate(value)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
28
_baseConformsTo.js
Normal file
28
_baseConformsTo.js
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
/**
|
||||||
|
* The base implementation of `_.conformsTo` which accepts `props` to check.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Object} object The object to inspect.
|
||||||
|
* @param {Object} source The object of property predicates to conform to.
|
||||||
|
* @returns {boolean} Returns `true` if `object` conforms, else `false`.
|
||||||
|
*/
|
||||||
|
function baseConformsTo(object, source, props) {
|
||||||
|
var length = props.length;
|
||||||
|
if (object == null) {
|
||||||
|
return !length;
|
||||||
|
}
|
||||||
|
var index = length;
|
||||||
|
while (index--) {
|
||||||
|
var key = props[index],
|
||||||
|
predicate = source[key],
|
||||||
|
value = object[key];
|
||||||
|
|
||||||
|
if ((value === undefined &&
|
||||||
|
!(key in Object(object))) || !predicate(value)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseConformsTo;
|
||||||
@@ -1,5 +1,8 @@
|
|||||||
var isObject = require('./isObject');
|
var isObject = require('./isObject');
|
||||||
|
|
||||||
|
/** Built-in value references. */
|
||||||
|
var objectCreate = Object.create;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.create` without support for assigning
|
* The base implementation of `_.create` without support for assigning
|
||||||
* properties to the created object.
|
* properties to the created object.
|
||||||
@@ -8,16 +11,8 @@ var isObject = require('./isObject');
|
|||||||
* @param {Object} prototype The object to inherit from.
|
* @param {Object} prototype The object to inherit from.
|
||||||
* @returns {Object} Returns the new object.
|
* @returns {Object} Returns the new object.
|
||||||
*/
|
*/
|
||||||
var baseCreate = (function() {
|
function baseCreate(proto) {
|
||||||
function object() {}
|
return isObject(proto) ? objectCreate(proto) : {};
|
||||||
return function(prototype) {
|
}
|
||||||
if (isObject(prototype)) {
|
|
||||||
object.prototype = prototype;
|
|
||||||
var result = new object;
|
|
||||||
object.prototype = undefined;
|
|
||||||
}
|
|
||||||
return result || {};
|
|
||||||
};
|
|
||||||
}());
|
|
||||||
|
|
||||||
module.exports = baseCreate;
|
module.exports = baseCreate;
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
var FUNC_ERROR_TEXT = 'Expected a function';
|
var FUNC_ERROR_TEXT = 'Expected a function';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.delay` and `_.defer` which accepts an array
|
* The base implementation of `_.delay` and `_.defer` which accepts `args`
|
||||||
* of `func` arguments.
|
* to provide to `func`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Function} func The function to delay.
|
* @param {Function} func The function to delay.
|
||||||
* @param {number} wait The number of milliseconds to delay invocation.
|
* @param {number} wait The number of milliseconds to delay invocation.
|
||||||
* @param {Object} args The arguments provide to `func`.
|
* @param {Array} args The arguments to provide to `func`.
|
||||||
* @returns {number} Returns the timer id.
|
* @returns {number} Returns the timer id.
|
||||||
*/
|
*/
|
||||||
function baseDelay(func, wait, args) {
|
function baseDelay(func, wait, args) {
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ var SetCache = require('./_SetCache'),
|
|||||||
var LARGE_ARRAY_SIZE = 200;
|
var LARGE_ARRAY_SIZE = 200;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of methods like `_.difference` without support for
|
* The base implementation of methods like `_.difference` without support
|
||||||
* excluding multiple arrays or iteratee shorthands.
|
* for excluding multiple arrays or iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to inspect.
|
* @param {Array} array The array to inspect.
|
||||||
@@ -47,6 +47,7 @@ function baseDifference(array, values, iteratee, comparator) {
|
|||||||
var value = array[index],
|
var value = array[index],
|
||||||
computed = iteratee ? iteratee(value) : value;
|
computed = iteratee ? iteratee(value) : value;
|
||||||
|
|
||||||
|
value = (comparator || value !== 0) ? value : 0;
|
||||||
if (isCommon && computed === computed) {
|
if (isCommon && computed === computed) {
|
||||||
var valuesIndex = valuesLength;
|
var valuesIndex = valuesLength;
|
||||||
while (valuesIndex--) {
|
while (valuesIndex--) {
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ var baseEach = require('./_baseEach');
|
|||||||
* @private
|
* @private
|
||||||
* @param {Array|Object} collection The collection to iterate over.
|
* @param {Array|Object} collection The collection to iterate over.
|
||||||
* @param {Function} predicate The function invoked per iteration.
|
* @param {Function} predicate The function invoked per iteration.
|
||||||
* @returns {boolean} Returns `true` if all elements pass the predicate check, else `false`
|
* @returns {boolean} Returns `true` if all elements pass the predicate check,
|
||||||
|
* else `false`
|
||||||
*/
|
*/
|
||||||
function baseEvery(collection, predicate) {
|
function baseEvery(collection, predicate) {
|
||||||
var result = true;
|
var result = true;
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
var isSymbol = require('./isSymbol');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of methods like `_.max` and `_.min` which accepts a
|
* The base implementation of methods like `_.max` and `_.min` which accepts a
|
||||||
* `comparator` to determine the extremum value.
|
* `comparator` to determine the extremum value.
|
||||||
@@ -17,7 +19,7 @@ function baseExtremum(array, iteratee, comparator) {
|
|||||||
current = iteratee(value);
|
current = iteratee(value);
|
||||||
|
|
||||||
if (current != null && (computed === undefined
|
if (current != null && (computed === undefined
|
||||||
? current === current
|
? (current === current && !isSymbol(current))
|
||||||
: comparator(current, computed)
|
: comparator(current, computed)
|
||||||
)) {
|
)) {
|
||||||
var computed = current,
|
var computed = current,
|
||||||
|
|||||||
@@ -5,12 +5,13 @@
|
|||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to search.
|
* @param {Array} array The array to search.
|
||||||
* @param {Function} predicate The function invoked per iteration.
|
* @param {Function} predicate The function invoked per iteration.
|
||||||
|
* @param {number} fromIndex The index to search from.
|
||||||
* @param {boolean} [fromRight] Specify iterating from right to left.
|
* @param {boolean} [fromRight] Specify iterating from right to left.
|
||||||
* @returns {number} Returns the index of the matched value, else `-1`.
|
* @returns {number} Returns the index of the matched value, else `-1`.
|
||||||
*/
|
*/
|
||||||
function baseFindIndex(array, predicate, fromRight) {
|
function baseFindIndex(array, predicate, fromIndex, fromRight) {
|
||||||
var length = array.length,
|
var length = array.length,
|
||||||
index = fromRight ? length : -1;
|
index = fromIndex + (fromRight ? 1 : -1);
|
||||||
|
|
||||||
while ((fromRight ? index-- : ++index < length)) {
|
while ((fromRight ? index-- : ++index < length)) {
|
||||||
if (predicate(array[index], index, array)) {
|
if (predicate(array[index], index, array)) {
|
||||||
|
|||||||
@@ -1,24 +1,23 @@
|
|||||||
/**
|
/**
|
||||||
* The base implementation of methods like `_.find` and `_.findKey`, without
|
* The base implementation of methods like `_.findKey` and `_.findLastKey`,
|
||||||
* support for iteratee shorthands, which iterates over `collection` using
|
* without support for iteratee shorthands, which iterates over `collection`
|
||||||
* `eachFunc`.
|
* using `eachFunc`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object} collection The collection to search.
|
* @param {Array|Object} collection The collection to search.
|
||||||
* @param {Function} predicate The function invoked per iteration.
|
* @param {Function} predicate The function invoked per iteration.
|
||||||
* @param {Function} eachFunc The function to iterate over `collection`.
|
* @param {Function} eachFunc The function to iterate over `collection`.
|
||||||
* @param {boolean} [retKey] Specify returning the key of the found element instead of the element itself.
|
|
||||||
* @returns {*} Returns the found element or its key, else `undefined`.
|
* @returns {*} Returns the found element or its key, else `undefined`.
|
||||||
*/
|
*/
|
||||||
function baseFind(collection, predicate, eachFunc, retKey) {
|
function baseFindKey(collection, predicate, eachFunc) {
|
||||||
var result;
|
var result;
|
||||||
eachFunc(collection, function(value, key, collection) {
|
eachFunc(collection, function(value, key, collection) {
|
||||||
if (predicate(value, key, collection)) {
|
if (predicate(value, key, collection)) {
|
||||||
result = retKey ? key : value;
|
result = key;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseFind;
|
module.exports = baseFindKey;
|
||||||
@@ -1,31 +1,30 @@
|
|||||||
var arrayPush = require('./_arrayPush'),
|
var arrayPush = require('./_arrayPush'),
|
||||||
isArguments = require('./isArguments'),
|
isFlattenable = require('./_isFlattenable');
|
||||||
isArray = require('./isArray'),
|
|
||||||
isArrayLikeObject = require('./isArrayLikeObject');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.flatten` with support for restricting flattening.
|
* The base implementation of `_.flatten` with support for restricting flattening.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to flatten.
|
* @param {Array} array The array to flatten.
|
||||||
* @param {boolean} [isDeep] Specify a deep flatten.
|
* @param {number} depth The maximum recursion depth.
|
||||||
* @param {boolean} [isStrict] Restrict flattening to arrays-like objects.
|
* @param {boolean} [predicate=isFlattenable] The function invoked per iteration.
|
||||||
|
* @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.
|
||||||
* @param {Array} [result=[]] The initial result value.
|
* @param {Array} [result=[]] The initial result value.
|
||||||
* @returns {Array} Returns the new flattened array.
|
* @returns {Array} Returns the new flattened array.
|
||||||
*/
|
*/
|
||||||
function baseFlatten(array, isDeep, isStrict, result) {
|
function baseFlatten(array, depth, predicate, isStrict, result) {
|
||||||
result || (result = []);
|
|
||||||
|
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length;
|
length = array.length;
|
||||||
|
|
||||||
|
predicate || (predicate = isFlattenable);
|
||||||
|
result || (result = []);
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
var value = array[index];
|
var value = array[index];
|
||||||
if (isArrayLikeObject(value) &&
|
if (depth > 0 && predicate(value)) {
|
||||||
(isStrict || isArray(value) || isArguments(value))) {
|
if (depth > 1) {
|
||||||
if (isDeep) {
|
|
||||||
// Recursively flatten arrays (susceptible to call stack limits).
|
// Recursively flatten arrays (susceptible to call stack limits).
|
||||||
baseFlatten(value, isDeep, isStrict, result);
|
baseFlatten(value, depth - 1, predicate, isStrict, result);
|
||||||
} else {
|
} else {
|
||||||
arrayPush(result, value);
|
arrayPush(result, value);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
var createBaseFor = require('./_createBaseFor');
|
var createBaseFor = require('./_createBaseFor');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `baseForIn` and `baseForOwn` which iterates
|
* The base implementation of `baseForOwn` which iterates over `object`
|
||||||
* over `object` properties returned by `keysFunc` invoking `iteratee` for
|
* properties returned by `keysFunc` and invokes `iteratee` for each property.
|
||||||
* each property. Iteratee functions may exit iteration early by explicitly
|
* Iteratee functions may exit iteration early by explicitly returning `false`.
|
||||||
* returning `false`.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to iterate over.
|
* @param {Object} object The object to iterate over.
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
var baseFor = require('./_baseFor'),
|
|
||||||
keysIn = require('./keysIn');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The base implementation of `_.forIn` without support for iteratee shorthands.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @param {Object} object The object to iterate over.
|
|
||||||
* @param {Function} iteratee The function invoked per iteration.
|
|
||||||
* @returns {Object} Returns `object`.
|
|
||||||
*/
|
|
||||||
function baseForIn(object, iteratee) {
|
|
||||||
return object == null ? object : baseFor(object, iteratee, keysIn);
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = baseForIn;
|
|
||||||
@@ -3,12 +3,12 @@ var arrayFilter = require('./_arrayFilter'),
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.functions` which creates an array of
|
* The base implementation of `_.functions` which creates an array of
|
||||||
* `object` function property names filtered from those provided.
|
* `object` function property names filtered from `props`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to inspect.
|
* @param {Object} object The object to inspect.
|
||||||
* @param {Array} props The property names to filter.
|
* @param {Array} props The property names to filter.
|
||||||
* @returns {Array} Returns the new array of filtered property names.
|
* @returns {Array} Returns the function names.
|
||||||
*/
|
*/
|
||||||
function baseFunctions(object, props) {
|
function baseFunctions(object, props) {
|
||||||
return arrayFilter(props, function(key) {
|
return arrayFilter(props, function(key) {
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
var baseToPath = require('./_baseToPath'),
|
var castPath = require('./_castPath'),
|
||||||
isKey = require('./_isKey');
|
isKey = require('./_isKey'),
|
||||||
|
toKey = require('./_toKey');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.get` without support for default values.
|
* The base implementation of `_.get` without support for default values.
|
||||||
@@ -10,13 +11,13 @@ var baseToPath = require('./_baseToPath'),
|
|||||||
* @returns {*} Returns the resolved value.
|
* @returns {*} Returns the resolved value.
|
||||||
*/
|
*/
|
||||||
function baseGet(object, path) {
|
function baseGet(object, path) {
|
||||||
path = isKey(path, object) ? [path + ''] : baseToPath(path);
|
path = isKey(path, object) ? [path] : castPath(path);
|
||||||
|
|
||||||
var index = 0,
|
var index = 0,
|
||||||
length = path.length;
|
length = path.length;
|
||||||
|
|
||||||
while (object != null && index < length) {
|
while (object != null && index < length) {
|
||||||
object = object[path[index++]];
|
object = object[toKey(path[index++])];
|
||||||
}
|
}
|
||||||
return (index && index == length) ? object : undefined;
|
return (index && index == length) ? object : undefined;
|
||||||
}
|
}
|
||||||
|
|||||||
20
_baseGetAllKeys.js
Normal file
20
_baseGetAllKeys.js
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
var arrayPush = require('./_arrayPush'),
|
||||||
|
isArray = require('./isArray');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `getAllKeys` and `getAllKeysIn` which uses
|
||||||
|
* `keysFunc` and `symbolsFunc` to get the enumerable property names and
|
||||||
|
* symbols of `object`.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Object} object The object to query.
|
||||||
|
* @param {Function} keysFunc The function to get the keys of `object`.
|
||||||
|
* @param {Function} symbolsFunc The function to get the symbols of `object`.
|
||||||
|
* @returns {Array} Returns the array of property names and symbols.
|
||||||
|
*/
|
||||||
|
function baseGetAllKeys(object, keysFunc, symbolsFunc) {
|
||||||
|
var result = keysFunc(object);
|
||||||
|
return isArray(object) ? result : arrayPush(result, symbolsFunc(object));
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseGetAllKeys;
|
||||||
22
_baseGetTag.js
Normal file
22
_baseGetTag.js
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
/** Used for built-in method references. */
|
||||||
|
var objectProto = Object.prototype;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to resolve the
|
||||||
|
* [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring)
|
||||||
|
* of values.
|
||||||
|
*/
|
||||||
|
var objectToString = objectProto.toString;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `getTag`.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to query.
|
||||||
|
* @returns {string} Returns the `toStringTag`.
|
||||||
|
*/
|
||||||
|
function baseGetTag(value) {
|
||||||
|
return objectToString.call(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseGetTag;
|
||||||
14
_baseGt.js
Normal file
14
_baseGt.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
/**
|
||||||
|
* The base implementation of `_.gt` which doesn't coerce arguments.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to compare.
|
||||||
|
* @param {*} other The other value to compare.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is greater than `other`,
|
||||||
|
* else `false`.
|
||||||
|
*/
|
||||||
|
function baseGt(value, other) {
|
||||||
|
return value > other;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseGt;
|
||||||
12
_baseHas.js
12
_baseHas.js
@@ -1,17 +1,16 @@
|
|||||||
|
var getPrototype = require('./_getPrototype');
|
||||||
|
|
||||||
/** Used for built-in method references. */
|
/** Used for built-in method references. */
|
||||||
var objectProto = Object.prototype;
|
var objectProto = Object.prototype;
|
||||||
|
|
||||||
/** Used to check objects for own properties. */
|
/** Used to check objects for own properties. */
|
||||||
var hasOwnProperty = objectProto.hasOwnProperty;
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
||||||
|
|
||||||
/** Built-in value references. */
|
|
||||||
var getPrototypeOf = Object.getPrototypeOf;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.has` without support for deep paths.
|
* The base implementation of `_.has` without support for deep paths.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to query.
|
* @param {Object} [object] The object to query.
|
||||||
* @param {Array|string} key The key to check.
|
* @param {Array|string} key The key to check.
|
||||||
* @returns {boolean} Returns `true` if `key` exists, else `false`.
|
* @returns {boolean} Returns `true` if `key` exists, else `false`.
|
||||||
*/
|
*/
|
||||||
@@ -19,8 +18,9 @@ function baseHas(object, key) {
|
|||||||
// Avoid a bug in IE 10-11 where objects with a [[Prototype]] of `null`,
|
// Avoid a bug in IE 10-11 where objects with a [[Prototype]] of `null`,
|
||||||
// that are composed entirely of index properties, return `false` for
|
// that are composed entirely of index properties, return `false` for
|
||||||
// `hasOwnProperty` checks of them.
|
// `hasOwnProperty` checks of them.
|
||||||
return hasOwnProperty.call(object, key) ||
|
return object != null &&
|
||||||
(typeof object == 'object' && key in object && getPrototypeOf(object) === null);
|
(hasOwnProperty.call(object, key) ||
|
||||||
|
(typeof object == 'object' && key in object && getPrototype(object) === null));
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseHas;
|
module.exports = baseHas;
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
* The base implementation of `_.hasIn` without support for deep paths.
|
* The base implementation of `_.hasIn` without support for deep paths.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to query.
|
* @param {Object} [object] The object to query.
|
||||||
* @param {Array|string} key The key to check.
|
* @param {Array|string} key The key to check.
|
||||||
* @returns {boolean} Returns `true` if `key` exists, else `false`.
|
* @returns {boolean} Returns `true` if `key` exists, else `false`.
|
||||||
*/
|
*/
|
||||||
function baseHasIn(object, key) {
|
function baseHasIn(object, key) {
|
||||||
return key in Object(object);
|
return object != null && key in Object(object);
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseHasIn;
|
module.exports = baseHasIn;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ var nativeMax = Math.max,
|
|||||||
nativeMin = Math.min;
|
nativeMin = Math.min;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.inRange` which doesn't coerce arguments to numbers.
|
* The base implementation of `_.inRange` which doesn't coerce arguments.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {number} number The number to check.
|
* @param {number} number The number to check.
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
var indexOfNaN = require('./_indexOfNaN');
|
var baseFindIndex = require('./_baseFindIndex'),
|
||||||
|
baseIsNaN = require('./_baseIsNaN');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.indexOf` without `fromIndex` bounds checks.
|
* The base implementation of `_.indexOf` without `fromIndex` bounds checks.
|
||||||
@@ -11,7 +12,7 @@ var indexOfNaN = require('./_indexOfNaN');
|
|||||||
*/
|
*/
|
||||||
function baseIndexOf(array, value, fromIndex) {
|
function baseIndexOf(array, value, fromIndex) {
|
||||||
if (value !== value) {
|
if (value !== value) {
|
||||||
return indexOfNaN(array, fromIndex);
|
return baseFindIndex(array, baseIsNaN, fromIndex);
|
||||||
}
|
}
|
||||||
var index = fromIndex - 1,
|
var index = fromIndex - 1,
|
||||||
length = array.length;
|
length = array.length;
|
||||||
|
|||||||
23
_baseIndexOfWith.js
Normal file
23
_baseIndexOfWith.js
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
/**
|
||||||
|
* This function is like `baseIndexOf` except that it accepts a comparator.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Array} array The array to search.
|
||||||
|
* @param {*} value The value to search for.
|
||||||
|
* @param {number} fromIndex The index to search from.
|
||||||
|
* @param {Function} comparator The comparator invoked per element.
|
||||||
|
* @returns {number} Returns the index of the matched value, else `-1`.
|
||||||
|
*/
|
||||||
|
function baseIndexOfWith(array, value, fromIndex, comparator) {
|
||||||
|
var index = fromIndex - 1,
|
||||||
|
length = array.length;
|
||||||
|
|
||||||
|
while (++index < length) {
|
||||||
|
if (comparator(array[index], value)) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseIndexOfWith;
|
||||||
@@ -5,6 +5,9 @@ var SetCache = require('./_SetCache'),
|
|||||||
baseUnary = require('./_baseUnary'),
|
baseUnary = require('./_baseUnary'),
|
||||||
cacheHas = require('./_cacheHas');
|
cacheHas = require('./_cacheHas');
|
||||||
|
|
||||||
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
||||||
|
var nativeMin = Math.min;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of methods like `_.intersection`, without support
|
* The base implementation of methods like `_.intersection`, without support
|
||||||
* for iteratee shorthands, that accepts an array of arrays to inspect.
|
* for iteratee shorthands, that accepts an array of arrays to inspect.
|
||||||
@@ -17,9 +20,11 @@ var SetCache = require('./_SetCache'),
|
|||||||
*/
|
*/
|
||||||
function baseIntersection(arrays, iteratee, comparator) {
|
function baseIntersection(arrays, iteratee, comparator) {
|
||||||
var includes = comparator ? arrayIncludesWith : arrayIncludes,
|
var includes = comparator ? arrayIncludesWith : arrayIncludes,
|
||||||
|
length = arrays[0].length,
|
||||||
othLength = arrays.length,
|
othLength = arrays.length,
|
||||||
othIndex = othLength,
|
othIndex = othLength,
|
||||||
caches = Array(othLength),
|
caches = Array(othLength),
|
||||||
|
maxLength = Infinity,
|
||||||
result = [];
|
result = [];
|
||||||
|
|
||||||
while (othIndex--) {
|
while (othIndex--) {
|
||||||
@@ -27,26 +32,33 @@ function baseIntersection(arrays, iteratee, comparator) {
|
|||||||
if (othIndex && iteratee) {
|
if (othIndex && iteratee) {
|
||||||
array = arrayMap(array, baseUnary(iteratee));
|
array = arrayMap(array, baseUnary(iteratee));
|
||||||
}
|
}
|
||||||
caches[othIndex] = !comparator && (iteratee || array.length >= 120)
|
maxLength = nativeMin(array.length, maxLength);
|
||||||
|
caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120))
|
||||||
? new SetCache(othIndex && array)
|
? new SetCache(othIndex && array)
|
||||||
: undefined;
|
: undefined;
|
||||||
}
|
}
|
||||||
array = arrays[0];
|
array = arrays[0];
|
||||||
|
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = array.length,
|
|
||||||
seen = caches[0];
|
seen = caches[0];
|
||||||
|
|
||||||
outer:
|
outer:
|
||||||
while (++index < length) {
|
while (++index < length && result.length < maxLength) {
|
||||||
var value = array[index],
|
var value = array[index],
|
||||||
computed = iteratee ? iteratee(value) : value;
|
computed = iteratee ? iteratee(value) : value;
|
||||||
|
|
||||||
if (!(seen ? cacheHas(seen, computed) : includes(result, computed, comparator))) {
|
value = (comparator || value !== 0) ? value : 0;
|
||||||
var othIndex = othLength;
|
if (!(seen
|
||||||
|
? cacheHas(seen, computed)
|
||||||
|
: includes(result, computed, comparator)
|
||||||
|
)) {
|
||||||
|
othIndex = othLength;
|
||||||
while (--othIndex) {
|
while (--othIndex) {
|
||||||
var cache = caches[othIndex];
|
var cache = caches[othIndex];
|
||||||
if (!(cache ? cacheHas(cache, computed) : includes(arrays[othIndex], computed, comparator))) {
|
if (!(cache
|
||||||
|
? cacheHas(cache, computed)
|
||||||
|
: includes(arrays[othIndex], computed, comparator))
|
||||||
|
) {
|
||||||
continue outer;
|
continue outer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
var apply = require('./_apply'),
|
var apply = require('./_apply'),
|
||||||
baseToPath = require('./_baseToPath'),
|
castPath = require('./_castPath'),
|
||||||
isKey = require('./_isKey'),
|
isKey = require('./_isKey'),
|
||||||
last = require('./last'),
|
last = require('./last'),
|
||||||
parent = require('./_parent');
|
parent = require('./_parent'),
|
||||||
|
toKey = require('./_toKey');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.invoke` without support for individual
|
* The base implementation of `_.invoke` without support for individual
|
||||||
@@ -16,11 +17,11 @@ var apply = require('./_apply'),
|
|||||||
*/
|
*/
|
||||||
function baseInvoke(object, path, args) {
|
function baseInvoke(object, path, args) {
|
||||||
if (!isKey(path, object)) {
|
if (!isKey(path, object)) {
|
||||||
path = baseToPath(path);
|
path = castPath(path);
|
||||||
object = parent(object, path);
|
object = parent(object, path);
|
||||||
path = last(path);
|
path = last(path);
|
||||||
}
|
}
|
||||||
var func = object == null ? object : object[path];
|
var func = object == null ? object : object[toKey(path)];
|
||||||
return func == null ? undefined : apply(func, object, args);
|
return func == null ? undefined : apply(func, object, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
26
_baseIsArrayBuffer.js
Normal file
26
_baseIsArrayBuffer.js
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
var isObjectLike = require('./isObjectLike');
|
||||||
|
|
||||||
|
var arrayBufferTag = '[object ArrayBuffer]';
|
||||||
|
|
||||||
|
/** Used for built-in method references. */
|
||||||
|
var objectProto = Object.prototype;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to resolve the
|
||||||
|
* [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring)
|
||||||
|
* of values.
|
||||||
|
*/
|
||||||
|
var objectToString = objectProto.toString;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.isArrayBuffer` without Node.js optimizations.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to check.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is an array buffer, else `false`.
|
||||||
|
*/
|
||||||
|
function baseIsArrayBuffer(value) {
|
||||||
|
return isObjectLike(value) && objectToString.call(value) == arrayBufferTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseIsArrayBuffer;
|
||||||
27
_baseIsDate.js
Normal file
27
_baseIsDate.js
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
var isObjectLike = require('./isObjectLike');
|
||||||
|
|
||||||
|
/** `Object#toString` result references. */
|
||||||
|
var dateTag = '[object Date]';
|
||||||
|
|
||||||
|
/** Used for built-in method references. */
|
||||||
|
var objectProto = Object.prototype;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to resolve the
|
||||||
|
* [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring)
|
||||||
|
* of values.
|
||||||
|
*/
|
||||||
|
var objectToString = objectProto.toString;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.isDate` without Node.js optimizations.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to check.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is a date object, else `false`.
|
||||||
|
*/
|
||||||
|
function baseIsDate(value) {
|
||||||
|
return isObjectLike(value) && objectToString.call(value) == dateTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseIsDate;
|
||||||
@@ -31,7 +31,8 @@ var hasOwnProperty = objectProto.hasOwnProperty;
|
|||||||
* @param {Object} other The other object to compare.
|
* @param {Object} other The other object to compare.
|
||||||
* @param {Function} equalFunc The function to determine equivalents of values.
|
* @param {Function} equalFunc The function to determine equivalents of values.
|
||||||
* @param {Function} [customizer] The function to customize comparisons.
|
* @param {Function} [customizer] The function to customize comparisons.
|
||||||
* @param {number} [bitmask] The bitmask of comparison flags. See `baseIsEqual` for more details.
|
* @param {number} [bitmask] The bitmask of comparison flags. See `baseIsEqual`
|
||||||
|
* for more details.
|
||||||
* @param {Object} [stack] Tracks traversed `object` and `other` objects.
|
* @param {Object} [stack] Tracks traversed `object` and `other` objects.
|
||||||
* @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
|
* @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
|
||||||
*/
|
*/
|
||||||
@@ -43,41 +44,39 @@ function baseIsEqualDeep(object, other, equalFunc, customizer, bitmask, stack) {
|
|||||||
|
|
||||||
if (!objIsArr) {
|
if (!objIsArr) {
|
||||||
objTag = getTag(object);
|
objTag = getTag(object);
|
||||||
if (objTag == argsTag) {
|
objTag = objTag == argsTag ? objectTag : objTag;
|
||||||
objTag = objectTag;
|
|
||||||
} else if (objTag != objectTag) {
|
|
||||||
objIsArr = isTypedArray(object);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!othIsArr) {
|
if (!othIsArr) {
|
||||||
othTag = getTag(other);
|
othTag = getTag(other);
|
||||||
if (othTag == argsTag) {
|
othTag = othTag == argsTag ? objectTag : othTag;
|
||||||
othTag = objectTag;
|
|
||||||
} else if (othTag != objectTag) {
|
|
||||||
othIsArr = isTypedArray(other);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
var objIsObj = objTag == objectTag && !isHostObject(object),
|
var objIsObj = objTag == objectTag && !isHostObject(object),
|
||||||
othIsObj = othTag == objectTag && !isHostObject(other),
|
othIsObj = othTag == objectTag && !isHostObject(other),
|
||||||
isSameTag = objTag == othTag;
|
isSameTag = objTag == othTag;
|
||||||
|
|
||||||
if (isSameTag && !(objIsArr || objIsObj)) {
|
if (isSameTag && !objIsObj) {
|
||||||
return equalByTag(object, other, objTag, equalFunc, customizer, bitmask);
|
stack || (stack = new Stack);
|
||||||
|
return (objIsArr || isTypedArray(object))
|
||||||
|
? equalArrays(object, other, equalFunc, customizer, bitmask, stack)
|
||||||
|
: equalByTag(object, other, objTag, equalFunc, customizer, bitmask, stack);
|
||||||
}
|
}
|
||||||
var isPartial = bitmask & PARTIAL_COMPARE_FLAG;
|
if (!(bitmask & PARTIAL_COMPARE_FLAG)) {
|
||||||
if (!isPartial) {
|
|
||||||
var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),
|
var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),
|
||||||
othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');
|
othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');
|
||||||
|
|
||||||
if (objIsWrapped || othIsWrapped) {
|
if (objIsWrapped || othIsWrapped) {
|
||||||
return equalFunc(objIsWrapped ? object.value() : object, othIsWrapped ? other.value() : other, customizer, bitmask, stack);
|
var objUnwrapped = objIsWrapped ? object.value() : object,
|
||||||
|
othUnwrapped = othIsWrapped ? other.value() : other;
|
||||||
|
|
||||||
|
stack || (stack = new Stack);
|
||||||
|
return equalFunc(objUnwrapped, othUnwrapped, customizer, bitmask, stack);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!isSameTag) {
|
if (!isSameTag) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
stack || (stack = new Stack);
|
stack || (stack = new Stack);
|
||||||
return (objIsArr ? equalArrays : equalObjects)(object, other, equalFunc, customizer, bitmask, stack);
|
return equalObjects(object, other, equalFunc, customizer, bitmask, stack);
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseIsEqualDeep;
|
module.exports = baseIsEqualDeep;
|
||||||
|
|||||||
18
_baseIsMap.js
Normal file
18
_baseIsMap.js
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
var getTag = require('./_getTag'),
|
||||||
|
isObjectLike = require('./isObjectLike');
|
||||||
|
|
||||||
|
/** `Object#toString` result references. */
|
||||||
|
var mapTag = '[object Map]';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.isMap` without Node.js optimizations.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to check.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is a map, else `false`.
|
||||||
|
*/
|
||||||
|
function baseIsMap(value) {
|
||||||
|
return isObjectLike(value) && getTag(value) == mapTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseIsMap;
|
||||||
@@ -44,9 +44,10 @@ function baseIsMatch(object, source, matchData, customizer) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var stack = new Stack,
|
var stack = new Stack;
|
||||||
result = customizer ? customizer(objValue, srcValue, key, object, source, stack) : undefined;
|
if (customizer) {
|
||||||
|
var result = customizer(objValue, srcValue, key, object, source, stack);
|
||||||
|
}
|
||||||
if (!(result === undefined
|
if (!(result === undefined
|
||||||
? baseIsEqual(srcValue, objValue, customizer, UNORDERED_COMPARE_FLAG | PARTIAL_COMPARE_FLAG, stack)
|
? baseIsEqual(srcValue, objValue, customizer, UNORDERED_COMPARE_FLAG | PARTIAL_COMPARE_FLAG, stack)
|
||||||
: result
|
: result
|
||||||
|
|||||||
12
_baseIsNaN.js
Normal file
12
_baseIsNaN.js
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
/**
|
||||||
|
* The base implementation of `_.isNaN` without support for number objects.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to check.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.
|
||||||
|
*/
|
||||||
|
function baseIsNaN(value) {
|
||||||
|
return value !== value;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseIsNaN;
|
||||||
47
_baseIsNative.js
Normal file
47
_baseIsNative.js
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
var isFunction = require('./isFunction'),
|
||||||
|
isHostObject = require('./_isHostObject'),
|
||||||
|
isMasked = require('./_isMasked'),
|
||||||
|
isObject = require('./isObject'),
|
||||||
|
toSource = require('./_toSource');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to match `RegExp`
|
||||||
|
* [syntax characters](http://ecma-international.org/ecma-262/6.0/#sec-patterns).
|
||||||
|
*/
|
||||||
|
var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
|
||||||
|
|
||||||
|
/** Used to detect host constructors (Safari). */
|
||||||
|
var reIsHostCtor = /^\[object .+?Constructor\]$/;
|
||||||
|
|
||||||
|
/** Used for built-in method references. */
|
||||||
|
var objectProto = Object.prototype;
|
||||||
|
|
||||||
|
/** Used to resolve the decompiled source of functions. */
|
||||||
|
var funcToString = Function.prototype.toString;
|
||||||
|
|
||||||
|
/** Used to check objects for own properties. */
|
||||||
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
||||||
|
|
||||||
|
/** Used to detect if a method is native. */
|
||||||
|
var reIsNative = RegExp('^' +
|
||||||
|
funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&')
|
||||||
|
.replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.isNative` without bad shim checks.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to check.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is a native function,
|
||||||
|
* else `false`.
|
||||||
|
*/
|
||||||
|
function baseIsNative(value) {
|
||||||
|
if (!isObject(value) || isMasked(value)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
var pattern = (isFunction(value) || isHostObject(value)) ? reIsNative : reIsHostCtor;
|
||||||
|
return pattern.test(toSource(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseIsNative;
|
||||||
27
_baseIsRegExp.js
Normal file
27
_baseIsRegExp.js
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
var isObject = require('./isObject');
|
||||||
|
|
||||||
|
/** `Object#toString` result references. */
|
||||||
|
var regexpTag = '[object RegExp]';
|
||||||
|
|
||||||
|
/** Used for built-in method references. */
|
||||||
|
var objectProto = Object.prototype;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to resolve the
|
||||||
|
* [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring)
|
||||||
|
* of values.
|
||||||
|
*/
|
||||||
|
var objectToString = objectProto.toString;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.isRegExp` without Node.js optimizations.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to check.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is a regexp, else `false`.
|
||||||
|
*/
|
||||||
|
function baseIsRegExp(value) {
|
||||||
|
return isObject(value) && objectToString.call(value) == regexpTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseIsRegExp;
|
||||||
18
_baseIsSet.js
Normal file
18
_baseIsSet.js
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
var getTag = require('./_getTag'),
|
||||||
|
isObjectLike = require('./isObjectLike');
|
||||||
|
|
||||||
|
/** `Object#toString` result references. */
|
||||||
|
var setTag = '[object Set]';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.isSet` without Node.js optimizations.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to check.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is a set, else `false`.
|
||||||
|
*/
|
||||||
|
function baseIsSet(value) {
|
||||||
|
return isObjectLike(value) && getTag(value) == setTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseIsSet;
|
||||||
69
_baseIsTypedArray.js
Normal file
69
_baseIsTypedArray.js
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
var isLength = require('./isLength'),
|
||||||
|
isObjectLike = require('./isObjectLike');
|
||||||
|
|
||||||
|
/** `Object#toString` result references. */
|
||||||
|
var argsTag = '[object Arguments]',
|
||||||
|
arrayTag = '[object Array]',
|
||||||
|
boolTag = '[object Boolean]',
|
||||||
|
dateTag = '[object Date]',
|
||||||
|
errorTag = '[object Error]',
|
||||||
|
funcTag = '[object Function]',
|
||||||
|
mapTag = '[object Map]',
|
||||||
|
numberTag = '[object Number]',
|
||||||
|
objectTag = '[object Object]',
|
||||||
|
regexpTag = '[object RegExp]',
|
||||||
|
setTag = '[object Set]',
|
||||||
|
stringTag = '[object String]',
|
||||||
|
weakMapTag = '[object WeakMap]';
|
||||||
|
|
||||||
|
var arrayBufferTag = '[object ArrayBuffer]',
|
||||||
|
dataViewTag = '[object DataView]',
|
||||||
|
float32Tag = '[object Float32Array]',
|
||||||
|
float64Tag = '[object Float64Array]',
|
||||||
|
int8Tag = '[object Int8Array]',
|
||||||
|
int16Tag = '[object Int16Array]',
|
||||||
|
int32Tag = '[object Int32Array]',
|
||||||
|
uint8Tag = '[object Uint8Array]',
|
||||||
|
uint8ClampedTag = '[object Uint8ClampedArray]',
|
||||||
|
uint16Tag = '[object Uint16Array]',
|
||||||
|
uint32Tag = '[object Uint32Array]';
|
||||||
|
|
||||||
|
/** Used to identify `toStringTag` values of typed arrays. */
|
||||||
|
var typedArrayTags = {};
|
||||||
|
typedArrayTags[float32Tag] = typedArrayTags[float64Tag] =
|
||||||
|
typedArrayTags[int8Tag] = typedArrayTags[int16Tag] =
|
||||||
|
typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =
|
||||||
|
typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =
|
||||||
|
typedArrayTags[uint32Tag] = true;
|
||||||
|
typedArrayTags[argsTag] = typedArrayTags[arrayTag] =
|
||||||
|
typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =
|
||||||
|
typedArrayTags[dataViewTag] = typedArrayTags[dateTag] =
|
||||||
|
typedArrayTags[errorTag] = typedArrayTags[funcTag] =
|
||||||
|
typedArrayTags[mapTag] = typedArrayTags[numberTag] =
|
||||||
|
typedArrayTags[objectTag] = typedArrayTags[regexpTag] =
|
||||||
|
typedArrayTags[setTag] = typedArrayTags[stringTag] =
|
||||||
|
typedArrayTags[weakMapTag] = false;
|
||||||
|
|
||||||
|
/** Used for built-in method references. */
|
||||||
|
var objectProto = Object.prototype;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used to resolve the
|
||||||
|
* [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring)
|
||||||
|
* of values.
|
||||||
|
*/
|
||||||
|
var objectToString = objectProto.toString;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.isTypedArray` without Node.js optimizations.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to check.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
|
||||||
|
*/
|
||||||
|
function baseIsTypedArray(value) {
|
||||||
|
return isObjectLike(value) &&
|
||||||
|
isLength(value.length) && !!typedArrayTags[objectToString.call(value)];
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseIsTypedArray;
|
||||||
@@ -12,14 +12,15 @@ var baseMatches = require('./_baseMatches'),
|
|||||||
* @returns {Function} Returns the iteratee.
|
* @returns {Function} Returns the iteratee.
|
||||||
*/
|
*/
|
||||||
function baseIteratee(value) {
|
function baseIteratee(value) {
|
||||||
var type = typeof value;
|
// Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9.
|
||||||
if (type == 'function') {
|
// See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details.
|
||||||
|
if (typeof value == 'function') {
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
if (value == null) {
|
if (value == null) {
|
||||||
return identity;
|
return identity;
|
||||||
}
|
}
|
||||||
if (type == 'object') {
|
if (typeof value == 'object') {
|
||||||
return isArray(value)
|
return isArray(value)
|
||||||
? baseMatchesProperty(value[0], value[1])
|
? baseMatchesProperty(value[0], value[1])
|
||||||
: baseMatches(value);
|
: baseMatches(value);
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
var overArg = require('./_overArg');
|
||||||
|
|
||||||
/* Built-in method references for those with the same name as other `lodash` methods. */
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
||||||
var nativeKeys = Object.keys;
|
var nativeKeys = Object.keys;
|
||||||
|
|
||||||
@@ -6,12 +8,9 @@ var nativeKeys = Object.keys;
|
|||||||
* property of prototypes or treat sparse arrays as dense.
|
* property of prototypes or treat sparse arrays as dense.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @type Function
|
|
||||||
* @param {Object} object The object to query.
|
* @param {Object} object The object to query.
|
||||||
* @returns {Array} Returns the array of property names.
|
* @returns {Array} Returns the array of property names.
|
||||||
*/
|
*/
|
||||||
function baseKeys(object) {
|
var baseKeys = overArg(nativeKeys, Object);
|
||||||
return nativeKeys(Object(object));
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = baseKeys;
|
module.exports = baseKeys;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* The function whose prototype all chaining wrappers inherit from.
|
* The function whose prototype chain sequence wrappers inherit from.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
|
|||||||
14
_baseLt.js
Normal file
14
_baseLt.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
/**
|
||||||
|
* The base implementation of `_.lt` which doesn't coerce arguments.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to compare.
|
||||||
|
* @param {*} other The other value to compare.
|
||||||
|
* @returns {boolean} Returns `true` if `value` is less than `other`,
|
||||||
|
* else `false`.
|
||||||
|
*/
|
||||||
|
function baseLt(value, other) {
|
||||||
|
return value < other;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseLt;
|
||||||
@@ -1,26 +1,18 @@
|
|||||||
var baseIsMatch = require('./_baseIsMatch'),
|
var baseIsMatch = require('./_baseIsMatch'),
|
||||||
getMatchData = require('./_getMatchData');
|
getMatchData = require('./_getMatchData'),
|
||||||
|
matchesStrictComparable = require('./_matchesStrictComparable');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.matches` which doesn't clone `source`.
|
* The base implementation of `_.matches` which doesn't clone `source`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} source The object of property values to match.
|
* @param {Object} source The object of property values to match.
|
||||||
* @returns {Function} Returns the new function.
|
* @returns {Function} Returns the new spec function.
|
||||||
*/
|
*/
|
||||||
function baseMatches(source) {
|
function baseMatches(source) {
|
||||||
var matchData = getMatchData(source);
|
var matchData = getMatchData(source);
|
||||||
if (matchData.length == 1 && matchData[0][2]) {
|
if (matchData.length == 1 && matchData[0][2]) {
|
||||||
var key = matchData[0][0],
|
return matchesStrictComparable(matchData[0][0], matchData[0][1]);
|
||||||
value = matchData[0][1];
|
|
||||||
|
|
||||||
return function(object) {
|
|
||||||
if (object == null) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return object[key] === value &&
|
|
||||||
(value !== undefined || (key in Object(object)));
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
return function(object) {
|
return function(object) {
|
||||||
return object === source || baseIsMatch(object, source, matchData);
|
return object === source || baseIsMatch(object, source, matchData);
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
var baseIsEqual = require('./_baseIsEqual'),
|
var baseIsEqual = require('./_baseIsEqual'),
|
||||||
get = require('./get'),
|
get = require('./get'),
|
||||||
hasIn = require('./hasIn');
|
hasIn = require('./hasIn'),
|
||||||
|
isKey = require('./_isKey'),
|
||||||
|
isStrictComparable = require('./_isStrictComparable'),
|
||||||
|
matchesStrictComparable = require('./_matchesStrictComparable'),
|
||||||
|
toKey = require('./_toKey');
|
||||||
|
|
||||||
/** Used to compose bitmasks for comparison styles. */
|
/** Used to compose bitmasks for comparison styles. */
|
||||||
var UNORDERED_COMPARE_FLAG = 1,
|
var UNORDERED_COMPARE_FLAG = 1,
|
||||||
@@ -12,9 +16,12 @@ var UNORDERED_COMPARE_FLAG = 1,
|
|||||||
* @private
|
* @private
|
||||||
* @param {string} path The path of the property to get.
|
* @param {string} path The path of the property to get.
|
||||||
* @param {*} srcValue The value to match.
|
* @param {*} srcValue The value to match.
|
||||||
* @returns {Function} Returns the new function.
|
* @returns {Function} Returns the new spec function.
|
||||||
*/
|
*/
|
||||||
function baseMatchesProperty(path, srcValue) {
|
function baseMatchesProperty(path, srcValue) {
|
||||||
|
if (isKey(path) && isStrictComparable(srcValue)) {
|
||||||
|
return matchesStrictComparable(toKey(path), srcValue);
|
||||||
|
}
|
||||||
return function(object) {
|
return function(object) {
|
||||||
var objValue = get(object, path);
|
var objValue = get(object, path);
|
||||||
return (objValue === undefined && objValue === srcValue)
|
return (objValue === undefined && objValue === srcValue)
|
||||||
|
|||||||
20
_baseMean.js
Normal file
20
_baseMean.js
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
var baseSum = require('./_baseSum');
|
||||||
|
|
||||||
|
/** Used as references for various `Number` constants. */
|
||||||
|
var NAN = 0 / 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.mean` and `_.meanBy` without support for
|
||||||
|
* iteratee shorthands.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Array} array The array to iterate over.
|
||||||
|
* @param {Function} iteratee The function invoked per iteration.
|
||||||
|
* @returns {number} Returns the mean.
|
||||||
|
*/
|
||||||
|
function baseMean(array, iteratee) {
|
||||||
|
var length = array ? array.length : 0;
|
||||||
|
return length ? (baseSum(array, iteratee) / length) : NAN;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseMean;
|
||||||
@@ -15,13 +15,16 @@ var Stack = require('./_Stack'),
|
|||||||
* @param {Object} source The source object.
|
* @param {Object} source The source object.
|
||||||
* @param {number} srcIndex The index of `source`.
|
* @param {number} srcIndex The index of `source`.
|
||||||
* @param {Function} [customizer] The function to customize merged values.
|
* @param {Function} [customizer] The function to customize merged values.
|
||||||
* @param {Object} [stack] Tracks traversed source values and their merged counterparts.
|
* @param {Object} [stack] Tracks traversed source values and their merged
|
||||||
|
* counterparts.
|
||||||
*/
|
*/
|
||||||
function baseMerge(object, source, srcIndex, customizer, stack) {
|
function baseMerge(object, source, srcIndex, customizer, stack) {
|
||||||
if (object === source) {
|
if (object === source) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var props = (isArray(source) || isTypedArray(source)) ? undefined : keysIn(source);
|
if (!(isArray(source) || isTypedArray(source))) {
|
||||||
|
var props = keysIn(source);
|
||||||
|
}
|
||||||
arrayEach(props || source, function(srcValue, key) {
|
arrayEach(props || source, function(srcValue, key) {
|
||||||
if (props) {
|
if (props) {
|
||||||
key = srcValue;
|
key = srcValue;
|
||||||
@@ -32,7 +35,10 @@ function baseMerge(object, source, srcIndex, customizer, stack) {
|
|||||||
baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);
|
baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
var newValue = customizer ? customizer(object[key], srcValue, (key + ''), object, source, stack) : undefined;
|
var newValue = customizer
|
||||||
|
? customizer(object[key], srcValue, (key + ''), object, source, stack)
|
||||||
|
: undefined;
|
||||||
|
|
||||||
if (newValue === undefined) {
|
if (newValue === undefined) {
|
||||||
newValue = srcValue;
|
newValue = srcValue;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,8 @@ var assignMergeValue = require('./_assignMergeValue'),
|
|||||||
* @param {number} srcIndex The index of `source`.
|
* @param {number} srcIndex The index of `source`.
|
||||||
* @param {Function} mergeFunc The function to merge values.
|
* @param {Function} mergeFunc The function to merge values.
|
||||||
* @param {Function} [customizer] The function to customize assigned values.
|
* @param {Function} [customizer] The function to customize assigned values.
|
||||||
* @param {Object} [stack] Tracks traversed source values and their merged counterparts.
|
* @param {Object} [stack] Tracks traversed source values and their merged
|
||||||
|
* counterparts.
|
||||||
*/
|
*/
|
||||||
function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {
|
function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {
|
||||||
var objValue = object[key],
|
var objValue = object[key],
|
||||||
@@ -33,21 +34,24 @@ function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, sta
|
|||||||
assignMergeValue(object, key, stacked);
|
assignMergeValue(object, key, stacked);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var newValue = customizer ? customizer(objValue, srcValue, (key + ''), object, source, stack) : undefined,
|
var newValue = customizer
|
||||||
isCommon = newValue === undefined;
|
? customizer(objValue, srcValue, (key + ''), object, source, stack)
|
||||||
|
: undefined;
|
||||||
|
|
||||||
|
var isCommon = newValue === undefined;
|
||||||
|
|
||||||
if (isCommon) {
|
if (isCommon) {
|
||||||
newValue = srcValue;
|
newValue = srcValue;
|
||||||
if (isArray(srcValue) || isTypedArray(srcValue)) {
|
if (isArray(srcValue) || isTypedArray(srcValue)) {
|
||||||
if (isArray(objValue)) {
|
if (isArray(objValue)) {
|
||||||
newValue = srcIndex ? copyArray(objValue) : objValue;
|
newValue = objValue;
|
||||||
}
|
}
|
||||||
else if (isArrayLikeObject(objValue)) {
|
else if (isArrayLikeObject(objValue)) {
|
||||||
newValue = copyArray(objValue);
|
newValue = copyArray(objValue);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
isCommon = false;
|
isCommon = false;
|
||||||
newValue = baseClone(srcValue);
|
newValue = baseClone(srcValue, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (isPlainObject(srcValue) || isArguments(srcValue)) {
|
else if (isPlainObject(srcValue) || isArguments(srcValue)) {
|
||||||
@@ -56,21 +60,21 @@ function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, sta
|
|||||||
}
|
}
|
||||||
else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) {
|
else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) {
|
||||||
isCommon = false;
|
isCommon = false;
|
||||||
newValue = baseClone(srcValue);
|
newValue = baseClone(srcValue, true);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
newValue = srcIndex ? baseClone(objValue) : objValue;
|
newValue = objValue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
isCommon = false;
|
isCommon = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stack.set(srcValue, newValue);
|
|
||||||
|
|
||||||
if (isCommon) {
|
if (isCommon) {
|
||||||
// Recursively merge objects and arrays (susceptible to call stack limits).
|
// Recursively merge objects and arrays (susceptible to call stack limits).
|
||||||
|
stack.set(srcValue, newValue);
|
||||||
mergeFunc(newValue, srcValue, srcIndex, customizer, stack);
|
mergeFunc(newValue, srcValue, srcIndex, customizer, stack);
|
||||||
|
stack['delete'](srcValue);
|
||||||
}
|
}
|
||||||
assignMergeValue(object, key, newValue);
|
assignMergeValue(object, key, newValue);
|
||||||
}
|
}
|
||||||
|
|||||||
20
_baseNth.js
Normal file
20
_baseNth.js
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
var isIndex = require('./_isIndex');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.nth` which doesn't coerce arguments.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Array} array The array to query.
|
||||||
|
* @param {number} n The index of the element to return.
|
||||||
|
* @returns {*} Returns the nth element of `array`.
|
||||||
|
*/
|
||||||
|
function baseNth(array, n) {
|
||||||
|
var length = array.length;
|
||||||
|
if (!length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
n += n < 0 ? length : 0;
|
||||||
|
return isIndex(n, length) ? array[n] : undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseNth;
|
||||||
@@ -2,7 +2,9 @@ var arrayMap = require('./_arrayMap'),
|
|||||||
baseIteratee = require('./_baseIteratee'),
|
baseIteratee = require('./_baseIteratee'),
|
||||||
baseMap = require('./_baseMap'),
|
baseMap = require('./_baseMap'),
|
||||||
baseSortBy = require('./_baseSortBy'),
|
baseSortBy = require('./_baseSortBy'),
|
||||||
compareMultiple = require('./_compareMultiple');
|
baseUnary = require('./_baseUnary'),
|
||||||
|
compareMultiple = require('./_compareMultiple'),
|
||||||
|
identity = require('./identity');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.orderBy` without param guards.
|
* The base implementation of `_.orderBy` without param guards.
|
||||||
@@ -14,12 +16,8 @@ var arrayMap = require('./_arrayMap'),
|
|||||||
* @returns {Array} Returns the new sorted array.
|
* @returns {Array} Returns the new sorted array.
|
||||||
*/
|
*/
|
||||||
function baseOrderBy(collection, iteratees, orders) {
|
function baseOrderBy(collection, iteratees, orders) {
|
||||||
var index = -1,
|
var index = -1;
|
||||||
toIteratee = baseIteratee;
|
iteratees = arrayMap(iteratees.length ? iteratees : [identity], baseUnary(baseIteratee));
|
||||||
|
|
||||||
iteratees = arrayMap(iteratees.length ? iteratees : Array(1), function(iteratee) {
|
|
||||||
return toIteratee(iteratee);
|
|
||||||
});
|
|
||||||
|
|
||||||
var result = baseMap(collection, function(value, key, collection) {
|
var result = baseMap(collection, function(value, key, collection) {
|
||||||
var criteria = arrayMap(iteratees, function(iteratee) {
|
var criteria = arrayMap(iteratees, function(iteratee) {
|
||||||
|
|||||||
15
_basePick.js
15
_basePick.js
@@ -1,22 +1,19 @@
|
|||||||
var arrayReduce = require('./_arrayReduce');
|
var basePickBy = require('./_basePickBy');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.pick` without support for individual
|
* The base implementation of `_.pick` without support for individual
|
||||||
* property names.
|
* property identifiers.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The source object.
|
* @param {Object} object The source object.
|
||||||
* @param {string[]} props The property names to pick.
|
* @param {string[]} props The property identifiers to pick.
|
||||||
* @returns {Object} Returns the new object.
|
* @returns {Object} Returns the new object.
|
||||||
*/
|
*/
|
||||||
function basePick(object, props) {
|
function basePick(object, props) {
|
||||||
object = Object(object);
|
object = Object(object);
|
||||||
return arrayReduce(props, function(result, key) {
|
return basePickBy(object, props, function(value, key) {
|
||||||
if (key in object) {
|
return key in object;
|
||||||
result[key] = object[key];
|
});
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}, {});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = basePick;
|
module.exports = basePick;
|
||||||
|
|||||||
@@ -1,20 +1,25 @@
|
|||||||
var baseForIn = require('./_baseForIn');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.pickBy` without support for iteratee shorthands.
|
* The base implementation of `_.pickBy` without support for iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The source object.
|
* @param {Object} object The source object.
|
||||||
|
* @param {string[]} props The property identifiers to pick from.
|
||||||
* @param {Function} predicate The function invoked per property.
|
* @param {Function} predicate The function invoked per property.
|
||||||
* @returns {Object} Returns the new object.
|
* @returns {Object} Returns the new object.
|
||||||
*/
|
*/
|
||||||
function basePickBy(object, predicate) {
|
function basePickBy(object, props, predicate) {
|
||||||
var result = {};
|
var index = -1,
|
||||||
baseForIn(object, function(value, key) {
|
length = props.length,
|
||||||
|
result = {};
|
||||||
|
|
||||||
|
while (++index < length) {
|
||||||
|
var key = props[index],
|
||||||
|
value = object[key];
|
||||||
|
|
||||||
if (predicate(value, key)) {
|
if (predicate(value, key)) {
|
||||||
result[key] = value;
|
result[key] = value;
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {string} key The key of the property to get.
|
* @param {string} key The key of the property to get.
|
||||||
* @returns {Function} Returns the new function.
|
* @returns {Function} Returns the new accessor function.
|
||||||
*/
|
*/
|
||||||
function baseProperty(key) {
|
function baseProperty(key) {
|
||||||
return function(object) {
|
return function(object) {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ var baseGet = require('./_baseGet');
|
|||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|string} path The path of the property to get.
|
* @param {Array|string} path The path of the property to get.
|
||||||
* @returns {Function} Returns the new function.
|
* @returns {Function} Returns the new accessor function.
|
||||||
*/
|
*/
|
||||||
function basePropertyDeep(path) {
|
function basePropertyDeep(path) {
|
||||||
return function(object) {
|
return function(object) {
|
||||||
|
|||||||
14
_basePropertyOf.js
Normal file
14
_basePropertyOf.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
/**
|
||||||
|
* The base implementation of `_.propertyOf` without support for deep paths.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Object} object The object to query.
|
||||||
|
* @returns {Function} Returns the new accessor function.
|
||||||
|
*/
|
||||||
|
function basePropertyOf(object) {
|
||||||
|
return function(key) {
|
||||||
|
return object == null ? undefined : object[key];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = basePropertyOf;
|
||||||
@@ -1,15 +1,51 @@
|
|||||||
var basePullAllBy = require('./_basePullAllBy');
|
var arrayMap = require('./_arrayMap'),
|
||||||
|
baseIndexOf = require('./_baseIndexOf'),
|
||||||
|
baseIndexOfWith = require('./_baseIndexOfWith'),
|
||||||
|
baseUnary = require('./_baseUnary'),
|
||||||
|
copyArray = require('./_copyArray');
|
||||||
|
|
||||||
|
/** Used for built-in method references. */
|
||||||
|
var arrayProto = Array.prototype;
|
||||||
|
|
||||||
|
/** Built-in value references. */
|
||||||
|
var splice = arrayProto.splice;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.pullAll`.
|
* The base implementation of `_.pullAllBy` without support for iteratee
|
||||||
|
* shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to modify.
|
* @param {Array} array The array to modify.
|
||||||
* @param {Array} values The values to remove.
|
* @param {Array} values The values to remove.
|
||||||
|
* @param {Function} [iteratee] The iteratee invoked per element.
|
||||||
|
* @param {Function} [comparator] The comparator invoked per element.
|
||||||
* @returns {Array} Returns `array`.
|
* @returns {Array} Returns `array`.
|
||||||
*/
|
*/
|
||||||
function basePullAll(array, values) {
|
function basePullAll(array, values, iteratee, comparator) {
|
||||||
return basePullAllBy(array, values);
|
var indexOf = comparator ? baseIndexOfWith : baseIndexOf,
|
||||||
|
index = -1,
|
||||||
|
length = values.length,
|
||||||
|
seen = array;
|
||||||
|
|
||||||
|
if (array === values) {
|
||||||
|
values = copyArray(values);
|
||||||
|
}
|
||||||
|
if (iteratee) {
|
||||||
|
seen = arrayMap(array, baseUnary(iteratee));
|
||||||
|
}
|
||||||
|
while (++index < length) {
|
||||||
|
var fromIndex = 0,
|
||||||
|
value = values[index],
|
||||||
|
computed = iteratee ? iteratee(value) : value;
|
||||||
|
|
||||||
|
while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) {
|
||||||
|
if (seen !== array) {
|
||||||
|
splice.call(seen, fromIndex, 1);
|
||||||
|
}
|
||||||
|
splice.call(array, fromIndex, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return array;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = basePullAll;
|
module.exports = basePullAll;
|
||||||
|
|||||||
@@ -1,43 +0,0 @@
|
|||||||
var arrayMap = require('./_arrayMap'),
|
|
||||||
baseIndexOf = require('./_baseIndexOf');
|
|
||||||
|
|
||||||
/** Used for built-in method references. */
|
|
||||||
var arrayProto = Array.prototype;
|
|
||||||
|
|
||||||
/** Built-in value references. */
|
|
||||||
var splice = arrayProto.splice;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The base implementation of `_.pullAllBy` without support for iteratee
|
|
||||||
* shorthands.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @param {Array} array The array to modify.
|
|
||||||
* @param {Array} values The values to remove.
|
|
||||||
* @param {Function} [iteratee] The iteratee invoked per element.
|
|
||||||
* @returns {Array} Returns `array`.
|
|
||||||
*/
|
|
||||||
function basePullAllBy(array, values, iteratee) {
|
|
||||||
var index = -1,
|
|
||||||
length = values.length,
|
|
||||||
seen = array;
|
|
||||||
|
|
||||||
if (iteratee) {
|
|
||||||
seen = arrayMap(array, function(value) { return iteratee(value); });
|
|
||||||
}
|
|
||||||
while (++index < length) {
|
|
||||||
var fromIndex = 0,
|
|
||||||
value = values[index],
|
|
||||||
computed = iteratee ? iteratee(value) : value;
|
|
||||||
|
|
||||||
while ((fromIndex = baseIndexOf(seen, computed, fromIndex)) > -1) {
|
|
||||||
if (seen !== array) {
|
|
||||||
splice.call(seen, fromIndex, 1);
|
|
||||||
}
|
|
||||||
splice.call(array, fromIndex, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return array;
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = basePullAllBy;
|
|
||||||
@@ -1,8 +1,9 @@
|
|||||||
var baseToPath = require('./_baseToPath'),
|
var castPath = require('./_castPath'),
|
||||||
isIndex = require('./_isIndex'),
|
isIndex = require('./_isIndex'),
|
||||||
isKey = require('./_isKey'),
|
isKey = require('./_isKey'),
|
||||||
last = require('./last'),
|
last = require('./last'),
|
||||||
parent = require('./_parent');
|
parent = require('./_parent'),
|
||||||
|
toKey = require('./_toKey');
|
||||||
|
|
||||||
/** Used for built-in method references. */
|
/** Used for built-in method references. */
|
||||||
var arrayProto = Array.prototype;
|
var arrayProto = Array.prototype;
|
||||||
@@ -25,21 +26,21 @@ function basePullAt(array, indexes) {
|
|||||||
|
|
||||||
while (length--) {
|
while (length--) {
|
||||||
var index = indexes[length];
|
var index = indexes[length];
|
||||||
if (lastIndex == length || index != previous) {
|
if (length == lastIndex || index !== previous) {
|
||||||
var previous = index;
|
var previous = index;
|
||||||
if (isIndex(index)) {
|
if (isIndex(index)) {
|
||||||
splice.call(array, index, 1);
|
splice.call(array, index, 1);
|
||||||
}
|
}
|
||||||
else if (!isKey(index, array)) {
|
else if (!isKey(index, array)) {
|
||||||
var path = baseToPath(index),
|
var path = castPath(index),
|
||||||
object = parent(array, path);
|
object = parent(array, path);
|
||||||
|
|
||||||
if (object != null) {
|
if (object != null) {
|
||||||
delete object[last(path)];
|
delete object[toKey(last(path))];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
delete array[index];
|
delete array[toKey(index)];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,14 +4,14 @@ var nativeCeil = Math.ceil,
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.range` and `_.rangeRight` which doesn't
|
* The base implementation of `_.range` and `_.rangeRight` which doesn't
|
||||||
* coerce arguments to numbers.
|
* coerce arguments.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {number} start The start of the range.
|
* @param {number} start The start of the range.
|
||||||
* @param {number} end The end of the range.
|
* @param {number} end The end of the range.
|
||||||
* @param {number} step The value to increment or decrement by.
|
* @param {number} step The value to increment or decrement by.
|
||||||
* @param {boolean} [fromRight] Specify iterating from right to left.
|
* @param {boolean} [fromRight] Specify iterating from right to left.
|
||||||
* @returns {Array} Returns the new array of numbers.
|
* @returns {Array} Returns the range of numbers.
|
||||||
*/
|
*/
|
||||||
function baseRange(start, end, step, fromRight) {
|
function baseRange(start, end, step, fromRight) {
|
||||||
var index = -1,
|
var index = -1,
|
||||||
|
|||||||
@@ -6,7 +6,8 @@
|
|||||||
* @param {Array|Object} collection The collection to iterate over.
|
* @param {Array|Object} collection The collection to iterate over.
|
||||||
* @param {Function} iteratee The function invoked per iteration.
|
* @param {Function} iteratee The function invoked per iteration.
|
||||||
* @param {*} accumulator The initial value.
|
* @param {*} accumulator The initial value.
|
||||||
* @param {boolean} initAccum Specify using the first or last element of `collection` as the initial value.
|
* @param {boolean} initAccum Specify using the first or last element of
|
||||||
|
* `collection` as the initial value.
|
||||||
* @param {Function} eachFunc The function to iterate over `collection`.
|
* @param {Function} eachFunc The function to iterate over `collection`.
|
||||||
* @returns {*} Returns the accumulated value.
|
* @returns {*} Returns the accumulated value.
|
||||||
*/
|
*/
|
||||||
|
|||||||
35
_baseRepeat.js
Normal file
35
_baseRepeat.js
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
/** Used as references for various `Number` constants. */
|
||||||
|
var MAX_SAFE_INTEGER = 9007199254740991;
|
||||||
|
|
||||||
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
||||||
|
var nativeFloor = Math.floor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.repeat` which doesn't coerce arguments.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {string} string The string to repeat.
|
||||||
|
* @param {number} n The number of times to repeat the string.
|
||||||
|
* @returns {string} Returns the repeated string.
|
||||||
|
*/
|
||||||
|
function baseRepeat(string, n) {
|
||||||
|
var result = '';
|
||||||
|
if (!string || n < 1 || n > MAX_SAFE_INTEGER) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
// Leverage the exponentiation by squaring algorithm for a faster repeat.
|
||||||
|
// See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details.
|
||||||
|
do {
|
||||||
|
if (n % 2) {
|
||||||
|
result += string;
|
||||||
|
}
|
||||||
|
n = nativeFloor(n / 2);
|
||||||
|
if (n) {
|
||||||
|
string += string;
|
||||||
|
}
|
||||||
|
} while (n);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseRepeat;
|
||||||
35
_baseRest.js
Normal file
35
_baseRest.js
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
var apply = require('./_apply');
|
||||||
|
|
||||||
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
||||||
|
var nativeMax = Math.max;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.rest` which doesn't validate or coerce arguments.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Function} func The function to apply a rest parameter to.
|
||||||
|
* @param {number} [start=func.length-1] The start position of the rest parameter.
|
||||||
|
* @returns {Function} Returns the new function.
|
||||||
|
*/
|
||||||
|
function baseRest(func, start) {
|
||||||
|
start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
|
||||||
|
return function() {
|
||||||
|
var args = arguments,
|
||||||
|
index = -1,
|
||||||
|
length = nativeMax(args.length - start, 0),
|
||||||
|
array = Array(length);
|
||||||
|
|
||||||
|
while (++index < length) {
|
||||||
|
array[index] = args[start + index];
|
||||||
|
}
|
||||||
|
index = -1;
|
||||||
|
var otherArgs = Array(start + 1);
|
||||||
|
while (++index < start) {
|
||||||
|
otherArgs[index] = args[index];
|
||||||
|
}
|
||||||
|
otherArgs[start] = array;
|
||||||
|
return apply(func, this, otherArgs);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseRest;
|
||||||
13
_baseSet.js
13
_baseSet.js
@@ -1,8 +1,9 @@
|
|||||||
var assignValue = require('./_assignValue'),
|
var assignValue = require('./_assignValue'),
|
||||||
baseToPath = require('./_baseToPath'),
|
castPath = require('./_castPath'),
|
||||||
isIndex = require('./_isIndex'),
|
isIndex = require('./_isIndex'),
|
||||||
isKey = require('./_isKey'),
|
isKey = require('./_isKey'),
|
||||||
isObject = require('./isObject');
|
isObject = require('./isObject'),
|
||||||
|
toKey = require('./_toKey');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.set`.
|
* The base implementation of `_.set`.
|
||||||
@@ -15,7 +16,7 @@ var assignValue = require('./_assignValue'),
|
|||||||
* @returns {Object} Returns `object`.
|
* @returns {Object} Returns `object`.
|
||||||
*/
|
*/
|
||||||
function baseSet(object, path, value, customizer) {
|
function baseSet(object, path, value, customizer) {
|
||||||
path = isKey(path, object) ? [path + ''] : baseToPath(path);
|
path = isKey(path, object) ? [path] : castPath(path);
|
||||||
|
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = path.length,
|
length = path.length,
|
||||||
@@ -23,14 +24,16 @@ function baseSet(object, path, value, customizer) {
|
|||||||
nested = object;
|
nested = object;
|
||||||
|
|
||||||
while (nested != null && ++index < length) {
|
while (nested != null && ++index < length) {
|
||||||
var key = path[index];
|
var key = toKey(path[index]);
|
||||||
if (isObject(nested)) {
|
if (isObject(nested)) {
|
||||||
var newValue = value;
|
var newValue = value;
|
||||||
if (index != lastIndex) {
|
if (index != lastIndex) {
|
||||||
var objValue = nested[key];
|
var objValue = nested[key];
|
||||||
newValue = customizer ? customizer(objValue, key, nested) : undefined;
|
newValue = customizer ? customizer(objValue, key, nested) : undefined;
|
||||||
if (newValue === undefined) {
|
if (newValue === undefined) {
|
||||||
newValue = objValue == null ? (isIndex(path[index + 1]) ? [] : {}) : objValue;
|
newValue = objValue == null
|
||||||
|
? (isIndex(path[index + 1]) ? [] : {})
|
||||||
|
: objValue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assignValue(nested, key, newValue);
|
assignValue(nested, key, newValue);
|
||||||
|
|||||||
@@ -6,7 +6,8 @@ var baseEach = require('./_baseEach');
|
|||||||
* @private
|
* @private
|
||||||
* @param {Array|Object} collection The collection to iterate over.
|
* @param {Array|Object} collection The collection to iterate over.
|
||||||
* @param {Function} predicate The function invoked per iteration.
|
* @param {Function} predicate The function invoked per iteration.
|
||||||
* @returns {boolean} Returns `true` if any element passes the predicate check, else `false`.
|
* @returns {boolean} Returns `true` if any element passes the predicate check,
|
||||||
|
* else `false`.
|
||||||
*/
|
*/
|
||||||
function baseSome(collection, predicate) {
|
function baseSome(collection, predicate) {
|
||||||
var result;
|
var result;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* The base implementation of `_.sortBy` which uses `comparer` to define
|
* The base implementation of `_.sortBy` which uses `comparer` to define the
|
||||||
* the sort order of `array` and replaces criteria objects with their
|
* sort order of `array` and replaces criteria objects with their corresponding
|
||||||
* corresponding values.
|
* values.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to sort.
|
* @param {Array} array The array to sort.
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
var baseSortedIndexBy = require('./_baseSortedIndexBy'),
|
var baseSortedIndexBy = require('./_baseSortedIndexBy'),
|
||||||
identity = require('./identity');
|
identity = require('./identity'),
|
||||||
|
isSymbol = require('./isSymbol');
|
||||||
|
|
||||||
/** Used as references for the maximum length and index of an array. */
|
/** Used as references for the maximum length and index of an array. */
|
||||||
var MAX_ARRAY_LENGTH = 4294967295,
|
var MAX_ARRAY_LENGTH = 4294967295,
|
||||||
@@ -26,7 +27,8 @@ function baseSortedIndex(array, value, retHighest) {
|
|||||||
var mid = (low + high) >>> 1,
|
var mid = (low + high) >>> 1,
|
||||||
computed = array[mid];
|
computed = array[mid];
|
||||||
|
|
||||||
if ((retHighest ? (computed <= value) : (computed < value)) && computed !== null) {
|
if (computed !== null && !isSymbol(computed) &&
|
||||||
|
(retHighest ? (computed <= value) : (computed < value))) {
|
||||||
low = mid + 1;
|
low = mid + 1;
|
||||||
} else {
|
} else {
|
||||||
high = mid;
|
high = mid;
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
var isSymbol = require('./isSymbol');
|
||||||
|
|
||||||
/** Used as references for the maximum length and index of an array. */
|
/** Used as references for the maximum length and index of an array. */
|
||||||
var MAX_ARRAY_LENGTH = 4294967295,
|
var MAX_ARRAY_LENGTH = 4294967295,
|
||||||
MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1;
|
MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1;
|
||||||
@@ -16,7 +18,8 @@ var nativeFloor = Math.floor,
|
|||||||
* @param {*} value The value to evaluate.
|
* @param {*} value The value to evaluate.
|
||||||
* @param {Function} iteratee The iteratee invoked per element.
|
* @param {Function} iteratee The iteratee invoked per element.
|
||||||
* @param {boolean} [retHighest] Specify returning the highest qualified index.
|
* @param {boolean} [retHighest] Specify returning the highest qualified index.
|
||||||
* @returns {number} Returns the index at which `value` should be inserted into `array`.
|
* @returns {number} Returns the index at which `value` should be inserted
|
||||||
|
* into `array`.
|
||||||
*/
|
*/
|
||||||
function baseSortedIndexBy(array, value, iteratee, retHighest) {
|
function baseSortedIndexBy(array, value, iteratee, retHighest) {
|
||||||
value = iteratee(value);
|
value = iteratee(value);
|
||||||
@@ -25,21 +28,26 @@ function baseSortedIndexBy(array, value, iteratee, retHighest) {
|
|||||||
high = array ? array.length : 0,
|
high = array ? array.length : 0,
|
||||||
valIsNaN = value !== value,
|
valIsNaN = value !== value,
|
||||||
valIsNull = value === null,
|
valIsNull = value === null,
|
||||||
valIsUndef = value === undefined;
|
valIsSymbol = isSymbol(value),
|
||||||
|
valIsUndefined = value === undefined;
|
||||||
|
|
||||||
while (low < high) {
|
while (low < high) {
|
||||||
var mid = nativeFloor((low + high) / 2),
|
var mid = nativeFloor((low + high) / 2),
|
||||||
computed = iteratee(array[mid]),
|
computed = iteratee(array[mid]),
|
||||||
isDef = computed !== undefined,
|
othIsDefined = computed !== undefined,
|
||||||
isReflexive = computed === computed;
|
othIsNull = computed === null,
|
||||||
|
othIsReflexive = computed === computed,
|
||||||
|
othIsSymbol = isSymbol(computed);
|
||||||
|
|
||||||
if (valIsNaN) {
|
if (valIsNaN) {
|
||||||
var setLow = isReflexive || retHighest;
|
var setLow = retHighest || othIsReflexive;
|
||||||
|
} else if (valIsUndefined) {
|
||||||
|
setLow = othIsReflexive && (retHighest || othIsDefined);
|
||||||
} else if (valIsNull) {
|
} else if (valIsNull) {
|
||||||
setLow = isReflexive && isDef && (retHighest || computed != null);
|
setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull);
|
||||||
} else if (valIsUndef) {
|
} else if (valIsSymbol) {
|
||||||
setLow = isReflexive && (retHighest || isDef);
|
setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol);
|
||||||
} else if (computed == null) {
|
} else if (othIsNull || othIsSymbol) {
|
||||||
setLow = false;
|
setLow = false;
|
||||||
} else {
|
} else {
|
||||||
setLow = retHighest ? (computed <= value) : (computed < value);
|
setLow = retHighest ? (computed <= value) : (computed < value);
|
||||||
|
|||||||
@@ -1,14 +1,30 @@
|
|||||||
var baseSortedUniqBy = require('./_baseSortedUniqBy');
|
var eq = require('./eq');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.sortedUniq`.
|
* The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without
|
||||||
|
* support for iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to inspect.
|
* @param {Array} array The array to inspect.
|
||||||
|
* @param {Function} [iteratee] The iteratee invoked per element.
|
||||||
* @returns {Array} Returns the new duplicate free array.
|
* @returns {Array} Returns the new duplicate free array.
|
||||||
*/
|
*/
|
||||||
function baseSortedUniq(array) {
|
function baseSortedUniq(array, iteratee) {
|
||||||
return baseSortedUniqBy(array);
|
var index = -1,
|
||||||
|
length = array.length,
|
||||||
|
resIndex = 0,
|
||||||
|
result = [];
|
||||||
|
|
||||||
|
while (++index < length) {
|
||||||
|
var value = array[index],
|
||||||
|
computed = iteratee ? iteratee(value) : value;
|
||||||
|
|
||||||
|
if (!index || !eq(computed, seen)) {
|
||||||
|
var seen = computed;
|
||||||
|
result[resIndex++] = value === 0 ? 0 : value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseSortedUniq;
|
module.exports = baseSortedUniq;
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
var eq = require('./eq');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The base implementation of `_.sortedUniqBy` without support for iteratee
|
|
||||||
* shorthands.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @param {Array} array The array to inspect.
|
|
||||||
* @param {Function} [iteratee] The iteratee invoked per element.
|
|
||||||
* @returns {Array} Returns the new duplicate free array.
|
|
||||||
*/
|
|
||||||
function baseSortedUniqBy(array, iteratee) {
|
|
||||||
var index = 0,
|
|
||||||
length = array.length,
|
|
||||||
value = array[0],
|
|
||||||
computed = iteratee ? iteratee(value) : value,
|
|
||||||
seen = computed,
|
|
||||||
resIndex = 0,
|
|
||||||
result = [value];
|
|
||||||
|
|
||||||
while (++index < length) {
|
|
||||||
value = array[index],
|
|
||||||
computed = iteratee ? iteratee(value) : value;
|
|
||||||
|
|
||||||
if (!eq(computed, seen)) {
|
|
||||||
seen = computed;
|
|
||||||
result[++resIndex] = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = baseSortedUniqBy;
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
* The base implementation of `_.sum` without support for iteratee shorthands.
|
* The base implementation of `_.sum` and `_.sumBy` without support for
|
||||||
|
* iteratee shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
|
|||||||
24
_baseToNumber.js
Normal file
24
_baseToNumber.js
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
var isSymbol = require('./isSymbol');
|
||||||
|
|
||||||
|
/** Used as references for various `Number` constants. */
|
||||||
|
var NAN = 0 / 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.toNumber` which doesn't ensure correct
|
||||||
|
* conversions of binary, hexadecimal, or octal string values.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to process.
|
||||||
|
* @returns {number} Returns the number.
|
||||||
|
*/
|
||||||
|
function baseToNumber(value) {
|
||||||
|
if (typeof value == 'number') {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
if (isSymbol(value)) {
|
||||||
|
return NAN;
|
||||||
|
}
|
||||||
|
return +value;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseToNumber;
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user