mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 17:47:49 +00:00
Compare commits
7 Commits
4.8.2-npm
...
4.13.0-npm
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0cf3476f14 | ||
|
|
dbe6a9008c | ||
|
|
ddde027fd9 | ||
|
|
e93cb815c3 | ||
|
|
63ba93dcb3 | ||
|
|
be0bf2681b | ||
|
|
7d39d58e43 |
@@ -1,4 +1,4 @@
|
|||||||
# lodash v4.8.2
|
# lodash v4.13.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.
|
||||||
|
|
||||||
@@ -28,13 +28,13 @@ 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.8.2-npm) for more details.
|
See the [package source](https://github.com/lodash/lodash/tree/4.13.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.
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
Tested in Chrome 48-49, Firefox 44-45, IE 9-11, Edge 13, Safari 8-9, Node.js 0.10, 0.12, 4, & 5, & PhantomJS 1.9.8.<br>
|
Tested in Chrome 49-50, Firefox 45-46, 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.
|
Automated [browser](https://saucelabs.com/u/lodash) & [CI](https://travis-ci.org/lodash/lodash/) test runs are available.
|
||||||
|
|||||||
32
_Hash.js
32
_Hash.js
@@ -1,18 +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
|
||||||
* @constructor
|
* @constructor
|
||||||
* @returns {Object} Returns the new hash object.
|
* @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;
|
||||||
|
|||||||
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;
|
||||||
28
_MapCache.js
28
_MapCache.js
@@ -1,32 +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
|
||||||
* @constructor
|
* @constructor
|
||||||
* @param {Array} [values] The values to cache.
|
* @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 methods to `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;
|
||||||
|
|||||||
10
_SetCache.js
10
_SetCache.js
@@ -1,9 +1,10 @@
|
|||||||
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
|
* @constructor
|
||||||
@@ -15,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 methods to `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;
|
||||||
|
|||||||
16
_Stack.js
16
_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'),
|
||||||
@@ -9,17 +10,10 @@ var stackClear = require('./_stackClear'),
|
|||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @constructor
|
* @constructor
|
||||||
* @param {Array} [values] The values to cache.
|
* @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 methods to `Stack`.
|
// Add methods to `Stack`.
|
||||||
|
|||||||
@@ -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,14 +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,
|
* @returns {boolean} Returns `true` if all elements pass the predicate check,
|
||||||
* else `false`.
|
* 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,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} 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 = 0,
|
resIndex = 0,
|
||||||
result = [];
|
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;
|
||||||
|
|||||||
@@ -2,14 +2,14 @@
|
|||||||
* This function is like `arrayIncludes` except that it accepts a comparator.
|
* This function is like `arrayIncludes` except that it accepts a comparator.
|
||||||
*
|
*
|
||||||
* @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,7 +3,7 @@
|
|||||||
* 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
|
* @param {boolean} [initAccum] Specify using the first element of `array` as
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
*/
|
*/
|
||||||
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,7 +3,7 @@
|
|||||||
* 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
|
* @param {boolean} [initAccum] Specify using the last element of `array` as
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
* @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,14 +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,
|
* @returns {boolean} Returns `true` if any element passes the predicate check,
|
||||||
* else `false`.
|
* 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)) {
|
||||||
|
|||||||
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;
|
|
||||||
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,14 +0,0 @@
|
|||||||
var isSymbol = require('./isSymbol');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Casts `value` to a string if it's not a string or symbol.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @param {*} value The value to inspect.
|
|
||||||
* @returns {string|symbol} Returns the cast key.
|
|
||||||
*/
|
|
||||||
function baseCastKey(key) {
|
|
||||||
return (typeof key == 'string' || isSymbol(key)) ? key : (key + '');
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = baseCastKey;
|
|
||||||
@@ -5,7 +5,7 @@ var keys = require('./keys');
|
|||||||
*
|
*
|
||||||
* @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),
|
||||||
|
|||||||
@@ -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--) {
|
||||||
|
|||||||
@@ -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,25 +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,7 +1,5 @@
|
|||||||
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.
|
||||||
@@ -9,23 +7,24 @@ var arrayPush = require('./_arrayPush'),
|
|||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to flatten.
|
* @param {Array} array The array to flatten.
|
||||||
* @param {number} depth The maximum recursion depth.
|
* @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, depth, 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 (depth > 0 && isArrayLikeObject(value) &&
|
if (depth > 0 && predicate(value)) {
|
||||||
(isStrict || isArray(value) || isArguments(value))) {
|
|
||||||
if (depth > 1) {
|
if (depth > 1) {
|
||||||
// Recursively flatten arrays (susceptible to call stack limits).
|
// Recursively flatten arrays (susceptible to call stack limits).
|
||||||
baseFlatten(value, depth - 1, isStrict, result);
|
baseFlatten(value, depth - 1, predicate, isStrict, result);
|
||||||
} else {
|
} else {
|
||||||
arrayPush(result, value);
|
arrayPush(result, value);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ var createBaseFor = require('./_createBaseFor');
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `baseForOwn` which iterates over `object`
|
* The base implementation of `baseForOwn` which iterates over `object`
|
||||||
* properties returned by `keysFunc` invoking `iteratee` for each property.
|
* properties returned by `keysFunc` and invokes `iteratee` for each property.
|
||||||
* Iteratee functions may exit iteration early by explicitly returning `false`.
|
* Iteratee functions may exit iteration early by explicitly returning `false`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ var arrayFilter = require('./_arrayFilter'),
|
|||||||
* @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 baseCastPath = require('./_baseCastPath'),
|
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 baseCastPath = require('./_baseCastPath'),
|
|||||||
* @returns {*} Returns the resolved value.
|
* @returns {*} Returns the resolved value.
|
||||||
*/
|
*/
|
||||||
function baseGet(object, path) {
|
function baseGet(object, path) {
|
||||||
path = isKey(path, object) ? [path] : baseCastPath(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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,9 +14,7 @@ var arrayPush = require('./_arrayPush'),
|
|||||||
*/
|
*/
|
||||||
function baseGetAllKeys(object, keysFunc, symbolsFunc) {
|
function baseGetAllKeys(object, keysFunc, symbolsFunc) {
|
||||||
var result = keysFunc(object);
|
var result = keysFunc(object);
|
||||||
return isArray(object)
|
return isArray(object) ? result : arrayPush(result, symbolsFunc(object));
|
||||||
? result
|
|
||||||
: arrayPush(result, symbolsFunc(object));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseGetAllKeys;
|
module.exports = baseGetAllKeys;
|
||||||
|
|||||||
14
_baseGt.js
Normal file
14
_baseGt.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
/**
|
||||||
|
* The base implementation of `_.gt` which doesn't coerce arguments to numbers.
|
||||||
|
*
|
||||||
|
* @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;
|
||||||
@@ -10,7 +10,7 @@ var hasOwnProperty = objectProto.hasOwnProperty;
|
|||||||
* 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`.
|
||||||
*/
|
*/
|
||||||
@@ -18,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 && getPrototype(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;
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ function baseIntersection(arrays, 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 (!(seen
|
if (!(seen
|
||||||
? cacheHas(seen, computed)
|
? cacheHas(seen, computed)
|
||||||
: includes(result, computed, comparator)
|
: includes(result, computed, comparator)
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
var apply = require('./_apply'),
|
var apply = require('./_apply'),
|
||||||
baseCastPath = require('./_baseCastPath'),
|
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 = baseCastPath(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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
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;
|
||||||
14
_baseLt.js
Normal file
14
_baseLt.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
/**
|
||||||
|
* The base implementation of `_.lt` which doesn't coerce arguments to numbers.
|
||||||
|
*
|
||||||
|
* @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;
|
||||||
@@ -7,7 +7,7 @@ var baseIsMatch = require('./_baseIsMatch'),
|
|||||||
*
|
*
|
||||||
* @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);
|
||||||
|
|||||||
@@ -3,7 +3,8 @@ var baseIsEqual = require('./_baseIsEqual'),
|
|||||||
hasIn = require('./hasIn'),
|
hasIn = require('./hasIn'),
|
||||||
isKey = require('./_isKey'),
|
isKey = require('./_isKey'),
|
||||||
isStrictComparable = require('./_isStrictComparable'),
|
isStrictComparable = require('./_isStrictComparable'),
|
||||||
matchesStrictComparable = require('./_matchesStrictComparable');
|
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,
|
||||||
@@ -15,11 +16,11 @@ 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)) {
|
if (isKey(path) && isStrictComparable(srcValue)) {
|
||||||
return matchesStrictComparable(path, srcValue);
|
return matchesStrictComparable(toKey(path), srcValue);
|
||||||
}
|
}
|
||||||
return function(object) {
|
return function(object) {
|
||||||
var objValue = get(object, path);
|
var objValue = get(object, path);
|
||||||
|
|||||||
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 `n` to an integer.
|
||||||
|
*
|
||||||
|
* @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,6 +2,7 @@ var arrayMap = require('./_arrayMap'),
|
|||||||
baseIteratee = require('./_baseIteratee'),
|
baseIteratee = require('./_baseIteratee'),
|
||||||
baseMap = require('./_baseMap'),
|
baseMap = require('./_baseMap'),
|
||||||
baseSortBy = require('./_baseSortBy'),
|
baseSortBy = require('./_baseSortBy'),
|
||||||
|
baseUnary = require('./_baseUnary'),
|
||||||
compareMultiple = require('./_compareMultiple'),
|
compareMultiple = require('./_compareMultiple'),
|
||||||
identity = require('./identity');
|
identity = require('./identity');
|
||||||
|
|
||||||
@@ -16,7 +17,7 @@ var arrayMap = require('./_arrayMap'),
|
|||||||
*/
|
*/
|
||||||
function baseOrderBy(collection, iteratees, orders) {
|
function baseOrderBy(collection, iteratees, orders) {
|
||||||
var index = -1;
|
var index = -1;
|
||||||
iteratees = arrayMap(iteratees.length ? iteratees : [identity], baseIteratee);
|
iteratees = arrayMap(iteratees.length ? iteratees : [identity], baseUnary(baseIteratee));
|
||||||
|
|
||||||
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) {
|
||||||
|
|||||||
@@ -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) {
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
var arrayMap = require('./_arrayMap'),
|
var arrayMap = require('./_arrayMap'),
|
||||||
baseIndexOf = require('./_baseIndexOf'),
|
baseIndexOf = require('./_baseIndexOf'),
|
||||||
baseIndexOfWith = require('./_baseIndexOfWith'),
|
baseIndexOfWith = require('./_baseIndexOfWith'),
|
||||||
baseUnary = require('./_baseUnary');
|
baseUnary = require('./_baseUnary'),
|
||||||
|
copyArray = require('./_copyArray');
|
||||||
|
|
||||||
/** Used for built-in method references. */
|
/** Used for built-in method references. */
|
||||||
var arrayProto = Array.prototype;
|
var arrayProto = Array.prototype;
|
||||||
@@ -26,6 +27,9 @@ function basePullAll(array, values, iteratee, comparator) {
|
|||||||
length = values.length,
|
length = values.length,
|
||||||
seen = array;
|
seen = array;
|
||||||
|
|
||||||
|
if (array === values) {
|
||||||
|
values = copyArray(values);
|
||||||
|
}
|
||||||
if (iteratee) {
|
if (iteratee) {
|
||||||
seen = arrayMap(array, baseUnary(iteratee));
|
seen = arrayMap(array, baseUnary(iteratee));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
var baseCastPath = require('./_baseCastPath'),
|
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 = baseCastPath(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)];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ var nativeCeil = Math.ceil,
|
|||||||
* @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,
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
var assignValue = require('./_assignValue'),
|
var assignValue = require('./_assignValue'),
|
||||||
baseCastPath = require('./_baseCastPath'),
|
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] : baseCastPath(path);
|
path = isKey(path, object) ? [path] : castPath(path);
|
||||||
|
|
||||||
var index = -1,
|
var index = -1,
|
||||||
length = path.length,
|
length = path.length,
|
||||||
@@ -23,7 +24,7 @@ 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) {
|
||||||
|
|||||||
@@ -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;
|
||||||
@@ -26,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 = 1,
|
|
||||||
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;
|
|
||||||
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;
|
||||||
@@ -7,7 +7,7 @@ var arrayMap = require('./_arrayMap');
|
|||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to query.
|
* @param {Object} object The object to query.
|
||||||
* @param {Array} props The property names to get values for.
|
* @param {Array} props The property names to get values for.
|
||||||
* @returns {Object} Returns the new array of key-value pairs.
|
* @returns {Object} Returns the key-value pairs.
|
||||||
*/
|
*/
|
||||||
function baseToPairs(object, props) {
|
function baseToPairs(object, props) {
|
||||||
return arrayMap(props, function(key) {
|
return arrayMap(props, function(key) {
|
||||||
|
|||||||
31
_baseToString.js
Normal file
31
_baseToString.js
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
var Symbol = require('./_Symbol'),
|
||||||
|
isSymbol = require('./isSymbol');
|
||||||
|
|
||||||
|
/** Used as references for various `Number` constants. */
|
||||||
|
var INFINITY = 1 / 0;
|
||||||
|
|
||||||
|
/** Used to convert symbols to primitives and strings. */
|
||||||
|
var symbolProto = Symbol ? Symbol.prototype : undefined,
|
||||||
|
symbolToString = symbolProto ? symbolProto.toString : undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base implementation of `_.toString` which doesn't convert nullish
|
||||||
|
* values to empty strings.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {*} value The value to process.
|
||||||
|
* @returns {string} Returns the string.
|
||||||
|
*/
|
||||||
|
function baseToString(value) {
|
||||||
|
// Exit early for strings to avoid a performance hit in some environments.
|
||||||
|
if (typeof value == 'string') {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
if (isSymbol(value)) {
|
||||||
|
return symbolToString ? symbolToString.call(value) : '';
|
||||||
|
}
|
||||||
|
var result = (value + '');
|
||||||
|
return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = baseToString;
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Function} func The function to cap arguments for.
|
* @param {Function} func The function to cap arguments for.
|
||||||
* @returns {Function} Returns the new function.
|
* @returns {Function} Returns the new capped function.
|
||||||
*/
|
*/
|
||||||
function baseUnary(func) {
|
function baseUnary(func) {
|
||||||
return function(value) {
|
return function(value) {
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ function baseUniq(array, 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 seenIndex = seen.length;
|
var seenIndex = seen.length;
|
||||||
while (seenIndex--) {
|
while (seenIndex--) {
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
var baseCastPath = require('./_baseCastPath'),
|
var baseHas = require('./_baseHas'),
|
||||||
has = require('./has'),
|
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 `_.unset`.
|
* The base implementation of `_.unset`.
|
||||||
@@ -13,10 +14,11 @@ var baseCastPath = require('./_baseCastPath'),
|
|||||||
* @returns {boolean} Returns `true` if the property is deleted, else `false`.
|
* @returns {boolean} Returns `true` if the property is deleted, else `false`.
|
||||||
*/
|
*/
|
||||||
function baseUnset(object, path) {
|
function baseUnset(object, path) {
|
||||||
path = isKey(path, object) ? [path] : baseCastPath(path);
|
path = isKey(path, object) ? [path] : castPath(path);
|
||||||
object = parent(object, path);
|
object = parent(object, path);
|
||||||
var key = last(path);
|
|
||||||
return (object != null && has(object, key)) ? delete object[key] : true;
|
var key = toKey(last(path));
|
||||||
|
return !(object != null && baseHas(object, key)) || delete object[key];
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseUnset;
|
module.exports = baseUnset;
|
||||||
|
|||||||
24
_cacheHas.js
24
_cacheHas.js
@@ -1,25 +1,13 @@
|
|||||||
var isKeyable = require('./_isKeyable');
|
|
||||||
|
|
||||||
/** Used to stand-in for `undefined` hash values. */
|
|
||||||
var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if `value` is in `cache`.
|
* Checks if a cache value for `key` exists.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} cache The set cache to search.
|
* @param {Object} cache The cache to query.
|
||||||
* @param {*} value The value to search for.
|
* @param {string} key The key of the entry to check.
|
||||||
* @returns {number} Returns `true` if `value` is found, else `false`.
|
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
|
||||||
*/
|
*/
|
||||||
function cacheHas(cache, value) {
|
function cacheHas(cache, key) {
|
||||||
var map = cache.__data__;
|
return cache.has(key);
|
||||||
if (isKeyable(value)) {
|
|
||||||
var data = map.__data__,
|
|
||||||
hash = typeof value == 'string' ? data.string : data.hash;
|
|
||||||
|
|
||||||
return hash[value] === HASH_UNDEFINED;
|
|
||||||
}
|
|
||||||
return map.has(value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = cacheHas;
|
module.exports = cacheHas;
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
var isKeyable = require('./_isKeyable');
|
|
||||||
|
|
||||||
/** Used to stand-in for `undefined` hash values. */
|
|
||||||
var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds `value` to the set cache.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @name push
|
|
||||||
* @memberOf SetCache
|
|
||||||
* @param {*} value The value to cache.
|
|
||||||
*/
|
|
||||||
function cachePush(value) {
|
|
||||||
var map = this.__data__;
|
|
||||||
if (isKeyable(value)) {
|
|
||||||
var data = map.__data__,
|
|
||||||
hash = typeof value == 'string' ? data.string : data.hash;
|
|
||||||
|
|
||||||
hash[value] = HASH_UNDEFINED;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
map.set(value, HASH_UNDEFINED);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = cachePush;
|
|
||||||
@@ -7,8 +7,8 @@ var isArrayLikeObject = require('./isArrayLikeObject');
|
|||||||
* @param {*} value The value to inspect.
|
* @param {*} value The value to inspect.
|
||||||
* @returns {Array|Object} Returns the cast array-like object.
|
* @returns {Array|Object} Returns the cast array-like object.
|
||||||
*/
|
*/
|
||||||
function baseCastArrayLikeObject(value) {
|
function castArrayLikeObject(value) {
|
||||||
return isArrayLikeObject(value) ? value : [];
|
return isArrayLikeObject(value) ? value : [];
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseCastArrayLikeObject;
|
module.exports = castArrayLikeObject;
|
||||||
@@ -7,8 +7,8 @@ var identity = require('./identity');
|
|||||||
* @param {*} value The value to inspect.
|
* @param {*} value The value to inspect.
|
||||||
* @returns {Function} Returns cast function.
|
* @returns {Function} Returns cast function.
|
||||||
*/
|
*/
|
||||||
function baseCastFunction(value) {
|
function castFunction(value) {
|
||||||
return typeof value == 'function' ? value : identity;
|
return typeof value == 'function' ? value : identity;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseCastFunction;
|
module.exports = castFunction;
|
||||||
@@ -8,8 +8,8 @@ var isArray = require('./isArray'),
|
|||||||
* @param {*} value The value to inspect.
|
* @param {*} value The value to inspect.
|
||||||
* @returns {Array} Returns the cast property path array.
|
* @returns {Array} Returns the cast property path array.
|
||||||
*/
|
*/
|
||||||
function baseCastPath(value) {
|
function castPath(value) {
|
||||||
return isArray(value) ? value : stringToPath(value);
|
return isArray(value) ? value : stringToPath(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = baseCastPath;
|
module.exports = castPath;
|
||||||
18
_castSlice.js
Normal file
18
_castSlice.js
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
var baseSlice = require('./_baseSlice');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Casts `array` to a slice if it's needed.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Array} array The array to inspect.
|
||||||
|
* @param {number} start The start position.
|
||||||
|
* @param {number} [end=array.length] The end position.
|
||||||
|
* @returns {Array} Returns the cast slice.
|
||||||
|
*/
|
||||||
|
function castSlice(array, start, end) {
|
||||||
|
var length = array.length;
|
||||||
|
end = end === undefined ? length : end;
|
||||||
|
return (!start && end >= length) ? array : baseSlice(array, start, end);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = castSlice;
|
||||||
@@ -1,3 +1,5 @@
|
|||||||
|
var isSymbol = require('./isSymbol');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Compares values to sort them in ascending order.
|
* Compares values to sort them in ascending order.
|
||||||
*
|
*
|
||||||
@@ -8,22 +10,28 @@
|
|||||||
*/
|
*/
|
||||||
function compareAscending(value, other) {
|
function compareAscending(value, other) {
|
||||||
if (value !== other) {
|
if (value !== other) {
|
||||||
var valIsNull = value === null,
|
var valIsDefined = value !== undefined,
|
||||||
valIsUndef = value === undefined,
|
valIsNull = value === null,
|
||||||
valIsReflexive = value === value;
|
valIsReflexive = value === value,
|
||||||
|
valIsSymbol = isSymbol(value);
|
||||||
|
|
||||||
var othIsNull = other === null,
|
var othIsDefined = other !== undefined,
|
||||||
othIsUndef = other === undefined,
|
othIsNull = other === null,
|
||||||
othIsReflexive = other === other;
|
othIsReflexive = other === other,
|
||||||
|
othIsSymbol = isSymbol(other);
|
||||||
|
|
||||||
if ((value > other && !othIsNull) || !valIsReflexive ||
|
if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) ||
|
||||||
(valIsNull && !othIsUndef && othIsReflexive) ||
|
(valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) ||
|
||||||
(valIsUndef && othIsReflexive)) {
|
(valIsNull && othIsDefined && othIsReflexive) ||
|
||||||
|
(!valIsDefined && othIsReflexive) ||
|
||||||
|
!valIsReflexive) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if ((value < other && !valIsNull) || !othIsReflexive ||
|
if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) ||
|
||||||
(othIsNull && !valIsUndef && valIsReflexive) ||
|
(othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) ||
|
||||||
(othIsUndef && valIsReflexive)) {
|
(othIsNull && valIsDefined && valIsReflexive) ||
|
||||||
|
(!othIsDefined && valIsReflexive) ||
|
||||||
|
!othIsReflexive) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ var nativeMax = Math.max;
|
|||||||
* placeholders, and provided arguments into a single array of arguments.
|
* placeholders, and provided arguments into a single array of arguments.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object} args The provided arguments.
|
* @param {Array} args The provided arguments.
|
||||||
* @param {Array} partials The arguments to prepend to those provided.
|
* @param {Array} partials The arguments to prepend to those provided.
|
||||||
* @param {Array} holders The `partials` placeholder indexes.
|
* @param {Array} holders The `partials` placeholder indexes.
|
||||||
* @params {boolean} [isCurried] Specify composing for a curried function.
|
* @params {boolean} [isCurried] Specify composing for a curried function.
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ var nativeMax = Math.max;
|
|||||||
* is tailored for `_.partialRight`.
|
* is tailored for `_.partialRight`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object} args The provided arguments.
|
* @param {Array} args The provided arguments.
|
||||||
* @param {Array} partials The arguments to append to those provided.
|
* @param {Array} partials The arguments to append to those provided.
|
||||||
* @param {Array} holders The `partials` placeholder indexes.
|
* @param {Array} holders The `partials` placeholder indexes.
|
||||||
* @params {boolean} [isCurried] Specify composing for a curried function.
|
* @params {boolean} [isCurried] Specify composing for a curried function.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
var copyObjectWith = require('./_copyObjectWith');
|
var assignValue = require('./_assignValue');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Copies properties of `source` to `object`.
|
* Copies properties of `source` to `object`.
|
||||||
@@ -7,10 +7,25 @@ var copyObjectWith = require('./_copyObjectWith');
|
|||||||
* @param {Object} source The object to copy properties from.
|
* @param {Object} source The object to copy properties from.
|
||||||
* @param {Array} props The property identifiers to copy.
|
* @param {Array} props The property identifiers to copy.
|
||||||
* @param {Object} [object={}] The object to copy properties to.
|
* @param {Object} [object={}] The object to copy properties to.
|
||||||
|
* @param {Function} [customizer] The function to customize copied values.
|
||||||
* @returns {Object} Returns `object`.
|
* @returns {Object} Returns `object`.
|
||||||
*/
|
*/
|
||||||
function copyObject(source, props, object) {
|
function copyObject(source, props, object, customizer) {
|
||||||
return copyObjectWith(source, props, object);
|
object || (object = {});
|
||||||
|
|
||||||
|
var index = -1,
|
||||||
|
length = props.length;
|
||||||
|
|
||||||
|
while (++index < length) {
|
||||||
|
var key = props[index];
|
||||||
|
|
||||||
|
var newValue = customizer
|
||||||
|
? customizer(object[key], source[key], key, object, source)
|
||||||
|
: source[key];
|
||||||
|
|
||||||
|
assignValue(object, key, newValue);
|
||||||
|
}
|
||||||
|
return object;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = copyObject;
|
module.exports = copyObject;
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
var assignValue = require('./_assignValue');
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This function is like `copyObject` except that it accepts a function to
|
|
||||||
* customize copied values.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @param {Object} source The object to copy properties from.
|
|
||||||
* @param {Array} props The property identifiers to copy.
|
|
||||||
* @param {Object} [object={}] The object to copy properties to.
|
|
||||||
* @param {Function} [customizer] The function to customize copied values.
|
|
||||||
* @returns {Object} Returns `object`.
|
|
||||||
*/
|
|
||||||
function copyObjectWith(source, props, object, customizer) {
|
|
||||||
object || (object = {});
|
|
||||||
|
|
||||||
var index = -1,
|
|
||||||
length = props.length;
|
|
||||||
|
|
||||||
while (++index < length) {
|
|
||||||
var key = props[index];
|
|
||||||
|
|
||||||
var newValue = customizer
|
|
||||||
? customizer(object[key], source[key], key, object, source)
|
|
||||||
: source[key];
|
|
||||||
|
|
||||||
assignValue(object, key, newValue);
|
|
||||||
}
|
|
||||||
return object;
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = copyObjectWith;
|
|
||||||
6
_coreJsData.js
Normal file
6
_coreJsData.js
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
var root = require('./_root');
|
||||||
|
|
||||||
|
/** Used to detect overreaching core-js shims. */
|
||||||
|
var coreJsData = root['__core-js_shared__'];
|
||||||
|
|
||||||
|
module.exports = coreJsData;
|
||||||
@@ -15,7 +15,7 @@ function createAssigner(assigner) {
|
|||||||
customizer = length > 1 ? sources[length - 1] : undefined,
|
customizer = length > 1 ? sources[length - 1] : undefined,
|
||||||
guard = length > 2 ? sources[2] : undefined;
|
guard = length > 2 ? sources[2] : undefined;
|
||||||
|
|
||||||
customizer = typeof customizer == 'function'
|
customizer = (assigner.length > 3 && typeof customizer == 'function')
|
||||||
? (length--, customizer)
|
? (length--, customizer)
|
||||||
: undefined;
|
: undefined;
|
||||||
|
|
||||||
|
|||||||
@@ -1,24 +1,14 @@
|
|||||||
var stringToArray = require('./_stringToArray'),
|
var castSlice = require('./_castSlice'),
|
||||||
|
reHasComplexSymbol = require('./_reHasComplexSymbol'),
|
||||||
|
stringToArray = require('./_stringToArray'),
|
||||||
toString = require('./toString');
|
toString = require('./toString');
|
||||||
|
|
||||||
/** Used to compose unicode character classes. */
|
|
||||||
var rsAstralRange = '\\ud800-\\udfff',
|
|
||||||
rsComboMarksRange = '\\u0300-\\u036f\\ufe20-\\ufe23',
|
|
||||||
rsComboSymbolsRange = '\\u20d0-\\u20f0',
|
|
||||||
rsVarRange = '\\ufe0e\\ufe0f';
|
|
||||||
|
|
||||||
/** Used to compose unicode capture groups. */
|
|
||||||
var rsZWJ = '\\u200d';
|
|
||||||
|
|
||||||
/** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */
|
|
||||||
var reHasComplexSymbol = RegExp('[' + rsZWJ + rsAstralRange + rsComboMarksRange + rsComboSymbolsRange + rsVarRange + ']');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a function like `_.lowerFirst`.
|
* Creates a function like `_.lowerFirst`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {string} methodName The name of the `String` case method to use.
|
* @param {string} methodName The name of the `String` case method to use.
|
||||||
* @returns {Function} Returns the new function.
|
* @returns {Function} Returns the new case function.
|
||||||
*/
|
*/
|
||||||
function createCaseFirst(methodName) {
|
function createCaseFirst(methodName) {
|
||||||
return function(string) {
|
return function(string) {
|
||||||
@@ -28,8 +18,13 @@ function createCaseFirst(methodName) {
|
|||||||
? stringToArray(string)
|
? stringToArray(string)
|
||||||
: undefined;
|
: undefined;
|
||||||
|
|
||||||
var chr = strSymbols ? strSymbols[0] : string.charAt(0),
|
var chr = strSymbols
|
||||||
trailing = strSymbols ? strSymbols.slice(1).join('') : string.slice(1);
|
? strSymbols[0]
|
||||||
|
: string.charAt(0);
|
||||||
|
|
||||||
|
var trailing = strSymbols
|
||||||
|
? castSlice(strSymbols, 1).join('')
|
||||||
|
: string.slice(1);
|
||||||
|
|
||||||
return chr[methodName]() + trailing;
|
return chr[methodName]() + trailing;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,6 +2,12 @@ var arrayReduce = require('./_arrayReduce'),
|
|||||||
deburr = require('./deburr'),
|
deburr = require('./deburr'),
|
||||||
words = require('./words');
|
words = require('./words');
|
||||||
|
|
||||||
|
/** Used to compose unicode capture groups. */
|
||||||
|
var rsApos = "['\u2019]";
|
||||||
|
|
||||||
|
/** Used to match apostrophes. */
|
||||||
|
var reApos = RegExp(rsApos, 'g');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a function like `_.camelCase`.
|
* Creates a function like `_.camelCase`.
|
||||||
*
|
*
|
||||||
@@ -11,7 +17,7 @@ var arrayReduce = require('./_arrayReduce'),
|
|||||||
*/
|
*/
|
||||||
function createCompounder(callback) {
|
function createCompounder(callback) {
|
||||||
return function(string) {
|
return function(string) {
|
||||||
return arrayReduce(words(deburr(string)), callback, '');
|
return arrayReduce(words(deburr(string).replace(reApos, '')), callback, '');
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ var apply = require('./_apply'),
|
|||||||
createCtorWrapper = require('./_createCtorWrapper'),
|
createCtorWrapper = require('./_createCtorWrapper'),
|
||||||
createHybridWrapper = require('./_createHybridWrapper'),
|
createHybridWrapper = require('./_createHybridWrapper'),
|
||||||
createRecurryWrapper = require('./_createRecurryWrapper'),
|
createRecurryWrapper = require('./_createRecurryWrapper'),
|
||||||
getPlaceholder = require('./_getPlaceholder'),
|
getHolder = require('./_getHolder'),
|
||||||
replaceHolders = require('./_replaceHolders'),
|
replaceHolders = require('./_replaceHolders'),
|
||||||
root = require('./_root');
|
root = require('./_root');
|
||||||
|
|
||||||
@@ -23,7 +23,7 @@ function createCurryWrapper(func, bitmask, arity) {
|
|||||||
var length = arguments.length,
|
var length = arguments.length,
|
||||||
args = Array(length),
|
args = Array(length),
|
||||||
index = length,
|
index = length,
|
||||||
placeholder = getPlaceholder(wrapper);
|
placeholder = getHolder(wrapper);
|
||||||
|
|
||||||
while (index--) {
|
while (index--) {
|
||||||
args[index] = arguments[index];
|
args[index] = arguments[index];
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ var composeArgs = require('./_composeArgs'),
|
|||||||
countHolders = require('./_countHolders'),
|
countHolders = require('./_countHolders'),
|
||||||
createCtorWrapper = require('./_createCtorWrapper'),
|
createCtorWrapper = require('./_createCtorWrapper'),
|
||||||
createRecurryWrapper = require('./_createRecurryWrapper'),
|
createRecurryWrapper = require('./_createRecurryWrapper'),
|
||||||
getPlaceholder = require('./_getPlaceholder'),
|
getHolder = require('./_getHolder'),
|
||||||
reorder = require('./_reorder'),
|
reorder = require('./_reorder'),
|
||||||
replaceHolders = require('./_replaceHolders'),
|
replaceHolders = require('./_replaceHolders'),
|
||||||
root = require('./_root');
|
root = require('./_root');
|
||||||
@@ -46,14 +46,14 @@ function createHybridWrapper(func, bitmask, thisArg, partials, holders, partials
|
|||||||
|
|
||||||
function wrapper() {
|
function wrapper() {
|
||||||
var length = arguments.length,
|
var length = arguments.length,
|
||||||
index = length,
|
args = Array(length),
|
||||||
args = Array(length);
|
index = length;
|
||||||
|
|
||||||
while (index--) {
|
while (index--) {
|
||||||
args[index] = arguments[index];
|
args[index] = arguments[index];
|
||||||
}
|
}
|
||||||
if (isCurried) {
|
if (isCurried) {
|
||||||
var placeholder = getPlaceholder(wrapper),
|
var placeholder = getHolder(wrapper),
|
||||||
holdersCount = countHolders(args, placeholder);
|
holdersCount = countHolders(args, placeholder);
|
||||||
}
|
}
|
||||||
if (partials) {
|
if (partials) {
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
var baseToNumber = require('./_baseToNumber'),
|
||||||
|
baseToString = require('./_baseToString');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a function that performs a mathematical operation on two values.
|
* Creates a function that performs a mathematical operation on two values.
|
||||||
*
|
*
|
||||||
@@ -15,7 +18,17 @@ function createMathOperation(operator) {
|
|||||||
result = value;
|
result = value;
|
||||||
}
|
}
|
||||||
if (other !== undefined) {
|
if (other !== undefined) {
|
||||||
result = result === undefined ? other : operator(result, other);
|
if (result === undefined) {
|
||||||
|
return other;
|
||||||
|
}
|
||||||
|
if (typeof value == 'string' || typeof other == 'string') {
|
||||||
|
value = baseToString(value);
|
||||||
|
other = baseToString(other);
|
||||||
|
} else {
|
||||||
|
value = baseToNumber(value);
|
||||||
|
other = baseToNumber(other);
|
||||||
|
}
|
||||||
|
result = operator(value, other);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,6 +2,9 @@ var apply = require('./_apply'),
|
|||||||
arrayMap = require('./_arrayMap'),
|
arrayMap = require('./_arrayMap'),
|
||||||
baseFlatten = require('./_baseFlatten'),
|
baseFlatten = require('./_baseFlatten'),
|
||||||
baseIteratee = require('./_baseIteratee'),
|
baseIteratee = require('./_baseIteratee'),
|
||||||
|
baseUnary = require('./_baseUnary'),
|
||||||
|
isArray = require('./isArray'),
|
||||||
|
isFlattenableIteratee = require('./_isFlattenableIteratee'),
|
||||||
rest = require('./rest');
|
rest = require('./rest');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -9,11 +12,14 @@ var apply = require('./_apply'),
|
|||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Function} arrayFunc The function to iterate over iteratees.
|
* @param {Function} arrayFunc The function to iterate over iteratees.
|
||||||
* @returns {Function} Returns the new invoker function.
|
* @returns {Function} Returns the new over function.
|
||||||
*/
|
*/
|
||||||
function createOver(arrayFunc) {
|
function createOver(arrayFunc) {
|
||||||
return rest(function(iteratees) {
|
return rest(function(iteratees) {
|
||||||
iteratees = arrayMap(baseFlatten(iteratees, 1), baseIteratee);
|
iteratees = (iteratees.length == 1 && isArray(iteratees[0]))
|
||||||
|
? arrayMap(iteratees[0], baseUnary(baseIteratee))
|
||||||
|
: arrayMap(baseFlatten(iteratees, 1, isFlattenableIteratee), baseUnary(baseIteratee));
|
||||||
|
|
||||||
return rest(function(args) {
|
return rest(function(args) {
|
||||||
var thisArg = this;
|
var thisArg = this;
|
||||||
return arrayFunc(iteratees, function(iteratee) {
|
return arrayFunc(iteratees, function(iteratee) {
|
||||||
|
|||||||
@@ -1,19 +1,10 @@
|
|||||||
var baseRepeat = require('./_baseRepeat'),
|
var baseRepeat = require('./_baseRepeat'),
|
||||||
|
baseToString = require('./_baseToString'),
|
||||||
|
castSlice = require('./_castSlice'),
|
||||||
|
reHasComplexSymbol = require('./_reHasComplexSymbol'),
|
||||||
stringSize = require('./_stringSize'),
|
stringSize = require('./_stringSize'),
|
||||||
stringToArray = require('./_stringToArray');
|
stringToArray = require('./_stringToArray');
|
||||||
|
|
||||||
/** Used to compose unicode character classes. */
|
|
||||||
var rsAstralRange = '\\ud800-\\udfff',
|
|
||||||
rsComboMarksRange = '\\u0300-\\u036f\\ufe20-\\ufe23',
|
|
||||||
rsComboSymbolsRange = '\\u20d0-\\u20f0',
|
|
||||||
rsVarRange = '\\ufe0e\\ufe0f';
|
|
||||||
|
|
||||||
/** Used to compose unicode capture groups. */
|
|
||||||
var rsZWJ = '\\u200d';
|
|
||||||
|
|
||||||
/** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */
|
|
||||||
var reHasComplexSymbol = RegExp('[' + rsZWJ + rsAstralRange + rsComboMarksRange + rsComboSymbolsRange + rsVarRange + ']');
|
|
||||||
|
|
||||||
/* 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 nativeCeil = Math.ceil;
|
var nativeCeil = Math.ceil;
|
||||||
|
|
||||||
@@ -27,7 +18,7 @@ var nativeCeil = Math.ceil;
|
|||||||
* @returns {string} Returns the padding for `string`.
|
* @returns {string} Returns the padding for `string`.
|
||||||
*/
|
*/
|
||||||
function createPadding(length, chars) {
|
function createPadding(length, chars) {
|
||||||
chars = chars === undefined ? ' ' : (chars + '');
|
chars = chars === undefined ? ' ' : baseToString(chars);
|
||||||
|
|
||||||
var charsLength = chars.length;
|
var charsLength = chars.length;
|
||||||
if (charsLength < 2) {
|
if (charsLength < 2) {
|
||||||
@@ -35,7 +26,7 @@ function createPadding(length, chars) {
|
|||||||
}
|
}
|
||||||
var result = baseRepeat(chars, nativeCeil(length / stringSize(chars)));
|
var result = baseRepeat(chars, nativeCeil(length / stringSize(chars)));
|
||||||
return reHasComplexSymbol.test(chars)
|
return reHasComplexSymbol.test(chars)
|
||||||
? stringToArray(result).slice(0, length).join('')
|
? castSlice(stringToArray(result), 0, length).join('')
|
||||||
: result.slice(0, length);
|
: result.slice(0, length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
var copyArray = require('./_copyArray'),
|
var isLaziable = require('./_isLaziable'),
|
||||||
isLaziable = require('./_isLaziable'),
|
|
||||||
setData = require('./_setData');
|
setData = require('./_setData');
|
||||||
|
|
||||||
/** Used to compose bitmasks for wrapper metadata. */
|
/** Used to compose bitmasks for wrapper metadata. */
|
||||||
@@ -30,7 +29,6 @@ var BIND_FLAG = 1,
|
|||||||
*/
|
*/
|
||||||
function createRecurryWrapper(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) {
|
function createRecurryWrapper(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) {
|
||||||
var isCurry = bitmask & CURRY_FLAG,
|
var isCurry = bitmask & CURRY_FLAG,
|
||||||
newArgPos = argPos ? copyArray(argPos) : undefined,
|
|
||||||
newHolders = isCurry ? holders : undefined,
|
newHolders = isCurry ? holders : undefined,
|
||||||
newHoldersRight = isCurry ? undefined : holders,
|
newHoldersRight = isCurry ? undefined : holders,
|
||||||
newPartials = isCurry ? partials : undefined,
|
newPartials = isCurry ? partials : undefined,
|
||||||
@@ -44,7 +42,7 @@ function createRecurryWrapper(func, bitmask, wrapFunc, placeholder, thisArg, par
|
|||||||
}
|
}
|
||||||
var newData = [
|
var newData = [
|
||||||
func, bitmask, thisArg, newPartials, newHolders, newPartialsRight,
|
func, bitmask, thisArg, newPartials, newHolders, newPartialsRight,
|
||||||
newHoldersRight, newArgPos, ary, arity
|
newHoldersRight, argPos, ary, arity
|
||||||
];
|
];
|
||||||
|
|
||||||
var result = wrapFunc.apply(undefined, newData);
|
var result = wrapFunc.apply(undefined, newData);
|
||||||
|
|||||||
20
_createRelationalOperation.js
Normal file
20
_createRelationalOperation.js
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
var toNumber = require('./toNumber');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a function that performs a relational operation on two values.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Function} operator The function to perform the operation.
|
||||||
|
* @returns {Function} Returns the new relational operation function.
|
||||||
|
*/
|
||||||
|
function createRelationalOperation(operator) {
|
||||||
|
return function(value, other) {
|
||||||
|
if (!(typeof value == 'string' && typeof other == 'string')) {
|
||||||
|
value = toNumber(value);
|
||||||
|
other = toNumber(other);
|
||||||
|
}
|
||||||
|
return operator(value, other);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = createRelationalOperation;
|
||||||
@@ -2,6 +2,9 @@ var toInteger = require('./toInteger'),
|
|||||||
toNumber = require('./toNumber'),
|
toNumber = require('./toNumber'),
|
||||||
toString = require('./toString');
|
toString = require('./toString');
|
||||||
|
|
||||||
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
||||||
|
var nativeMin = Math.min;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a function like `_.round`.
|
* Creates a function like `_.round`.
|
||||||
*
|
*
|
||||||
@@ -13,7 +16,7 @@ function createRound(methodName) {
|
|||||||
var func = Math[methodName];
|
var func = Math[methodName];
|
||||||
return function(number, precision) {
|
return function(number, precision) {
|
||||||
number = toNumber(number);
|
number = toNumber(number);
|
||||||
precision = toInteger(precision);
|
precision = nativeMin(toInteger(precision), 292);
|
||||||
if (precision) {
|
if (precision) {
|
||||||
// Shift with exponential notation to avoid floating-point issues.
|
// Shift with exponential notation to avoid floating-point issues.
|
||||||
// See [MDN](https://mdn.io/round#Examples) for more details.
|
// See [MDN](https://mdn.io/round#Examples) for more details.
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
var Set = require('./_Set'),
|
var Set = require('./_Set'),
|
||||||
noop = require('./noop');
|
noop = require('./noop'),
|
||||||
|
setToArray = require('./_setToArray');
|
||||||
|
|
||||||
|
/** Used as references for various `Number` constants. */
|
||||||
|
var INFINITY = 1 / 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a set of `values`.
|
* Creates a set of `values`.
|
||||||
@@ -8,7 +12,7 @@ var Set = require('./_Set'),
|
|||||||
* @param {Array} values The values to add to the set.
|
* @param {Array} values The values to add to the set.
|
||||||
* @returns {Object} Returns the new set.
|
* @returns {Object} Returns the new set.
|
||||||
*/
|
*/
|
||||||
var createSet = !(Set && new Set([1, 2]).size === 2) ? noop : function(values) {
|
var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) {
|
||||||
return new Set(values);
|
return new Set(values);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
30
_createToPairs.js
Normal file
30
_createToPairs.js
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
var baseToPairs = require('./_baseToPairs'),
|
||||||
|
getTag = require('./_getTag'),
|
||||||
|
mapToArray = require('./_mapToArray'),
|
||||||
|
setToPairs = require('./_setToPairs');
|
||||||
|
|
||||||
|
/** `Object#toString` result references. */
|
||||||
|
var mapTag = '[object Map]',
|
||||||
|
setTag = '[object Set]';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a `_.toPairs` or `_.toPairsIn` function.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Function} keysFunc The function to get the keys of a given object.
|
||||||
|
* @returns {Function} Returns the new pairs function.
|
||||||
|
*/
|
||||||
|
function createToPairs(keysFunc) {
|
||||||
|
return function(object) {
|
||||||
|
var tag = getTag(object);
|
||||||
|
if (tag == mapTag) {
|
||||||
|
return mapToArray(object);
|
||||||
|
}
|
||||||
|
if (tag == setTag) {
|
||||||
|
return setToPairs(object);
|
||||||
|
}
|
||||||
|
return baseToPairs(object, keysFunc(object));
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = createToPairs;
|
||||||
@@ -39,6 +39,7 @@ var nativeMax = Math.max;
|
|||||||
* 64 - `_.partialRight`
|
* 64 - `_.partialRight`
|
||||||
* 128 - `_.rearg`
|
* 128 - `_.rearg`
|
||||||
* 256 - `_.ary`
|
* 256 - `_.ary`
|
||||||
|
* 512 - `_.flip`
|
||||||
* @param {*} [thisArg] The `this` binding of `func`.
|
* @param {*} [thisArg] The `this` binding of `func`.
|
||||||
* @param {Array} [partials] The arguments to be partially applied.
|
* @param {Array} [partials] The arguments to be partially applied.
|
||||||
* @param {Array} [holders] The `partials` placeholder indexes.
|
* @param {Array} [holders] The `partials` placeholder indexes.
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
var arraySome = require('./_arraySome');
|
var SetCache = require('./_SetCache'),
|
||||||
|
arraySome = require('./_arraySome');
|
||||||
|
|
||||||
/** Used to compose bitmasks for comparison styles. */
|
/** Used to compose bitmasks for comparison styles. */
|
||||||
var UNORDERED_COMPARE_FLAG = 1,
|
var UNORDERED_COMPARE_FLAG = 1,
|
||||||
@@ -19,9 +20,7 @@ var UNORDERED_COMPARE_FLAG = 1,
|
|||||||
* @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.
|
* @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.
|
||||||
*/
|
*/
|
||||||
function equalArrays(array, other, equalFunc, customizer, bitmask, stack) {
|
function equalArrays(array, other, equalFunc, customizer, bitmask, stack) {
|
||||||
var index = -1,
|
var isPartial = bitmask & PARTIAL_COMPARE_FLAG,
|
||||||
isPartial = bitmask & PARTIAL_COMPARE_FLAG,
|
|
||||||
isUnordered = bitmask & UNORDERED_COMPARE_FLAG,
|
|
||||||
arrLength = array.length,
|
arrLength = array.length,
|
||||||
othLength = other.length;
|
othLength = other.length;
|
||||||
|
|
||||||
@@ -33,7 +32,10 @@ function equalArrays(array, other, equalFunc, customizer, bitmask, stack) {
|
|||||||
if (stacked) {
|
if (stacked) {
|
||||||
return stacked == other;
|
return stacked == other;
|
||||||
}
|
}
|
||||||
var result = true;
|
var index = -1,
|
||||||
|
result = true,
|
||||||
|
seen = (bitmask & UNORDERED_COMPARE_FLAG) ? new SetCache : undefined;
|
||||||
|
|
||||||
stack.set(array, other);
|
stack.set(array, other);
|
||||||
|
|
||||||
// Ignore non-index properties.
|
// Ignore non-index properties.
|
||||||
@@ -54,10 +56,12 @@ function equalArrays(array, other, equalFunc, customizer, bitmask, stack) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// Recursively compare arrays (susceptible to call stack limits).
|
// Recursively compare arrays (susceptible to call stack limits).
|
||||||
if (isUnordered) {
|
if (seen) {
|
||||||
if (!arraySome(other, function(othValue) {
|
if (!arraySome(other, function(othValue, othIndex) {
|
||||||
return arrValue === othValue ||
|
if (!seen.has(othIndex) &&
|
||||||
equalFunc(arrValue, othValue, customizer, bitmask, stack);
|
(arrValue === othValue || equalFunc(arrValue, othValue, customizer, bitmask, stack))) {
|
||||||
|
return seen.add(othIndex);
|
||||||
|
}
|
||||||
})) {
|
})) {
|
||||||
result = false;
|
result = false;
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -5,9 +5,9 @@
|
|||||||
* @param {Function} func The function to inspect.
|
* @param {Function} func The function to inspect.
|
||||||
* @returns {*} Returns the placeholder value.
|
* @returns {*} Returns the placeholder value.
|
||||||
*/
|
*/
|
||||||
function getPlaceholder(func) {
|
function getHolder(func) {
|
||||||
var object = func;
|
var object = func;
|
||||||
return object.placeholder;
|
return object.placeholder;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = getPlaceholder;
|
module.exports = getHolder;
|
||||||
18
_getMapData.js
Normal file
18
_getMapData.js
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
var isKeyable = require('./_isKeyable');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the data for `map`.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Object} map The map to query.
|
||||||
|
* @param {string} key The reference key.
|
||||||
|
* @returns {*} Returns the map data.
|
||||||
|
*/
|
||||||
|
function getMapData(map, key) {
|
||||||
|
var data = map.__data__;
|
||||||
|
return isKeyable(key)
|
||||||
|
? data[typeof key == 'string' ? 'string' : 'hash']
|
||||||
|
: data.map;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = getMapData;
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
var isStrictComparable = require('./_isStrictComparable'),
|
var isStrictComparable = require('./_isStrictComparable'),
|
||||||
toPairs = require('./toPairs');
|
keys = require('./keys');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the property names, values, and compare flags of `object`.
|
* Gets the property names, values, and compare flags of `object`.
|
||||||
@@ -9,11 +9,14 @@ var isStrictComparable = require('./_isStrictComparable'),
|
|||||||
* @returns {Array} Returns the match data of `object`.
|
* @returns {Array} Returns the match data of `object`.
|
||||||
*/
|
*/
|
||||||
function getMatchData(object) {
|
function getMatchData(object) {
|
||||||
var result = toPairs(object),
|
var result = keys(object),
|
||||||
length = result.length;
|
length = result.length;
|
||||||
|
|
||||||
while (length--) {
|
while (length--) {
|
||||||
result[length][2] = isStrictComparable(result[length][1]);
|
var key = result[length],
|
||||||
|
value = object[key];
|
||||||
|
|
||||||
|
result[length] = [key, value, isStrictComparable(value)];
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
var isNative = require('./isNative');
|
var baseIsNative = require('./_baseIsNative'),
|
||||||
|
getValue = require('./_getValue');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the native function at `key` of `object`.
|
* Gets the native function at `key` of `object`.
|
||||||
@@ -9,8 +10,8 @@ var isNative = require('./isNative');
|
|||||||
* @returns {*} Returns the function if it's native, else `undefined`.
|
* @returns {*} Returns the function if it's native, else `undefined`.
|
||||||
*/
|
*/
|
||||||
function getNative(object, key) {
|
function getNative(object, key) {
|
||||||
var value = object[key];
|
var value = getValue(object, key);
|
||||||
return isNative(value) ? value : undefined;
|
return baseIsNative(value) ? value : undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = getNative;
|
module.exports = getNative;
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
var stubArray = require('./stubArray');
|
||||||
|
|
||||||
/** Built-in value references. */
|
/** Built-in value references. */
|
||||||
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
||||||
|
|
||||||
@@ -16,9 +18,7 @@ function getSymbols(object) {
|
|||||||
|
|
||||||
// Fallback for IE < 11.
|
// Fallback for IE < 11.
|
||||||
if (!getOwnPropertySymbols) {
|
if (!getOwnPropertySymbols) {
|
||||||
getSymbols = function() {
|
getSymbols = stubArray;
|
||||||
return [];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = getSymbols;
|
module.exports = getSymbols;
|
||||||
|
|||||||
@@ -51,8 +51,8 @@ if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||
|
|||||||
(WeakMap && getTag(new WeakMap) != weakMapTag)) {
|
(WeakMap && getTag(new WeakMap) != weakMapTag)) {
|
||||||
getTag = function(value) {
|
getTag = function(value) {
|
||||||
var result = objectToString.call(value),
|
var result = objectToString.call(value),
|
||||||
Ctor = result == objectTag ? value.constructor : null,
|
Ctor = result == objectTag ? value.constructor : undefined,
|
||||||
ctorString = toSource(Ctor);
|
ctorString = Ctor ? toSource(Ctor) : undefined;
|
||||||
|
|
||||||
if (ctorString) {
|
if (ctorString) {
|
||||||
switch (ctorString) {
|
switch (ctorString) {
|
||||||
|
|||||||
13
_getValue.js
Normal file
13
_getValue.js
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
/**
|
||||||
|
* Gets the value at `key` of `object`.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @param {Object} [object] The object to query.
|
||||||
|
* @param {string} key The key of the property to get.
|
||||||
|
* @returns {*} Returns the property value.
|
||||||
|
*/
|
||||||
|
function getValue(object, key) {
|
||||||
|
return object == null ? undefined : object[key];
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = getValue;
|
||||||
@@ -1,10 +1,11 @@
|
|||||||
var baseCastPath = require('./_baseCastPath'),
|
var castPath = require('./_castPath'),
|
||||||
isArguments = require('./isArguments'),
|
isArguments = require('./isArguments'),
|
||||||
isArray = require('./isArray'),
|
isArray = require('./isArray'),
|
||||||
isIndex = require('./_isIndex'),
|
isIndex = require('./_isIndex'),
|
||||||
isKey = require('./_isKey'),
|
isKey = require('./_isKey'),
|
||||||
isLength = require('./isLength'),
|
isLength = require('./isLength'),
|
||||||
isString = require('./isString');
|
isString = require('./isString'),
|
||||||
|
toKey = require('./_toKey');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if `path` exists on `object`.
|
* Checks if `path` exists on `object`.
|
||||||
@@ -16,14 +17,14 @@ var baseCastPath = require('./_baseCastPath'),
|
|||||||
* @returns {boolean} Returns `true` if `path` exists, else `false`.
|
* @returns {boolean} Returns `true` if `path` exists, else `false`.
|
||||||
*/
|
*/
|
||||||
function hasPath(object, path, hasFunc) {
|
function hasPath(object, path, hasFunc) {
|
||||||
path = isKey(path, object) ? [path] : baseCastPath(path);
|
path = isKey(path, object) ? [path] : castPath(path);
|
||||||
|
|
||||||
var result,
|
var result,
|
||||||
index = -1,
|
index = -1,
|
||||||
length = path.length;
|
length = path.length;
|
||||||
|
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
var key = path[index];
|
var key = toKey(path[index]);
|
||||||
if (!(result = object != null && hasFunc(object, key))) {
|
if (!(result = object != null && hasFunc(object, key))) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
14
_hashClear.js
Normal file
14
_hashClear.js
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
var nativeCreate = require('./_nativeCreate');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes all key-value entries from the hash.
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
* @name clear
|
||||||
|
* @memberOf Hash
|
||||||
|
*/
|
||||||
|
function hashClear() {
|
||||||
|
this.__data__ = nativeCreate ? nativeCreate(null) : {};
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = hashClear;
|
||||||
@@ -1,15 +1,15 @@
|
|||||||
var hashHas = require('./_hashHas');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes `key` and its value from the hash.
|
* Removes `key` and its value from the hash.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
|
* @name delete
|
||||||
|
* @memberOf Hash
|
||||||
* @param {Object} hash The hash to modify.
|
* @param {Object} hash The hash to modify.
|
||||||
* @param {string} key The key of the value to remove.
|
* @param {string} key The key of the value to remove.
|
||||||
* @returns {boolean} Returns `true` if the entry was removed, else `false`.
|
* @returns {boolean} Returns `true` if the entry was removed, else `false`.
|
||||||
*/
|
*/
|
||||||
function hashDelete(hash, key) {
|
function hashDelete(key) {
|
||||||
return hashHas(hash, key) && delete hash[key];
|
return this.has(key) && delete this.__data__[key];
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = hashDelete;
|
module.exports = hashDelete;
|
||||||
|
|||||||
10
_hashGet.js
10
_hashGet.js
@@ -13,16 +13,18 @@ var hasOwnProperty = objectProto.hasOwnProperty;
|
|||||||
* Gets the hash value for `key`.
|
* Gets the hash value for `key`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} hash The hash to query.
|
* @name get
|
||||||
|
* @memberOf Hash
|
||||||
* @param {string} key The key of the value to get.
|
* @param {string} key The key of the value to get.
|
||||||
* @returns {*} Returns the entry value.
|
* @returns {*} Returns the entry value.
|
||||||
*/
|
*/
|
||||||
function hashGet(hash, key) {
|
function hashGet(key) {
|
||||||
|
var data = this.__data__;
|
||||||
if (nativeCreate) {
|
if (nativeCreate) {
|
||||||
var result = hash[key];
|
var result = data[key];
|
||||||
return result === HASH_UNDEFINED ? undefined : result;
|
return result === HASH_UNDEFINED ? undefined : result;
|
||||||
}
|
}
|
||||||
return hasOwnProperty.call(hash, key) ? hash[key] : undefined;
|
return hasOwnProperty.call(data, key) ? data[key] : undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = hashGet;
|
module.exports = hashGet;
|
||||||
|
|||||||
@@ -10,12 +10,14 @@ var hasOwnProperty = objectProto.hasOwnProperty;
|
|||||||
* Checks if a hash value for `key` exists.
|
* Checks if a hash value for `key` exists.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} hash The hash to query.
|
* @name has
|
||||||
|
* @memberOf Hash
|
||||||
* @param {string} key The key of the entry to check.
|
* @param {string} key The key of the entry to check.
|
||||||
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
|
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
|
||||||
*/
|
*/
|
||||||
function hashHas(hash, key) {
|
function hashHas(key) {
|
||||||
return nativeCreate ? hash[key] !== undefined : hasOwnProperty.call(hash, key);
|
var data = this.__data__;
|
||||||
|
return nativeCreate ? data[key] !== undefined : hasOwnProperty.call(data, key);
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = hashHas;
|
module.exports = hashHas;
|
||||||
|
|||||||
10
_hashSet.js
10
_hashSet.js
@@ -7,12 +7,16 @@ var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
|||||||
* Sets the hash `key` to `value`.
|
* Sets the hash `key` to `value`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} hash The hash to modify.
|
* @name set
|
||||||
|
* @memberOf Hash
|
||||||
* @param {string} key The key of the value to set.
|
* @param {string} key The key of the value to set.
|
||||||
* @param {*} value The value to set.
|
* @param {*} value The value to set.
|
||||||
|
* @returns {Object} Returns the hash instance.
|
||||||
*/
|
*/
|
||||||
function hashSet(hash, key, value) {
|
function hashSet(key, value) {
|
||||||
hash[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;
|
var data = this.__data__;
|
||||||
|
data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = hashSet;
|
module.exports = hashSet;
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
*/
|
*/
|
||||||
function indexOfNaN(array, fromIndex, fromRight) {
|
function indexOfNaN(array, fromIndex, fromRight) {
|
||||||
var length = array.length,
|
var length = array.length,
|
||||||
index = fromIndex + (fromRight ? 0 : -1);
|
index = fromIndex + (fromRight ? 1 : -1);
|
||||||
|
|
||||||
while ((fromRight ? index-- : ++index < length)) {
|
while ((fromRight ? index-- : ++index < length)) {
|
||||||
var other = array[index];
|
var other = array[index];
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user