update to state of the art
This commit is contained in:
11
node_modules/lodash/_baseSortedIndexBy.js
generated
vendored
11
node_modules/lodash/_baseSortedIndexBy.js
generated
vendored
@@ -22,11 +22,14 @@ var nativeFloor = Math.floor,
|
||||
* into `array`.
|
||||
*/
|
||||
function baseSortedIndexBy(array, value, iteratee, retHighest) {
|
||||
value = iteratee(value);
|
||||
|
||||
var low = 0,
|
||||
high = array == null ? 0 : array.length,
|
||||
valIsNaN = value !== value,
|
||||
high = array == null ? 0 : array.length;
|
||||
if (high === 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
value = iteratee(value);
|
||||
var valIsNaN = value !== value,
|
||||
valIsNull = value === null,
|
||||
valIsSymbol = isSymbol(value),
|
||||
valIsUndefined = value === undefined;
|
||||
|
Reference in New Issue
Block a user