Added the underscore node_module.
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 39s
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 39s
This commit is contained in:
30
node_modules/underscore/cjs/_createIndexFinder.js
generated
vendored
Normal file
30
node_modules/underscore/cjs/_createIndexFinder.js
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
var _getLength = require('./_getLength.js');
|
||||
var _setup = require('./_setup.js');
|
||||
var _isNaN = require('./isNaN.js');
|
||||
|
||||
// Internal function to generate the `_.indexOf` and `_.lastIndexOf` functions.
|
||||
function createIndexFinder(dir, predicateFind, sortedIndex) {
|
||||
return function(array, item, idx) {
|
||||
var i = 0, length = _getLength(array);
|
||||
if (typeof idx == 'number') {
|
||||
if (dir > 0) {
|
||||
i = idx >= 0 ? idx : Math.max(idx + length, i);
|
||||
} else {
|
||||
length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;
|
||||
}
|
||||
} else if (sortedIndex && idx && length) {
|
||||
idx = sortedIndex(array, item);
|
||||
return array[idx] === item ? idx : -1;
|
||||
}
|
||||
if (item !== item) {
|
||||
idx = predicateFind(_setup.slice.call(array, i, length), _isNaN);
|
||||
return idx >= 0 ? idx + i : -1;
|
||||
}
|
||||
for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {
|
||||
if (array[idx] === item) return idx;
|
||||
}
|
||||
return -1;
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = createIndexFinder;
|
Reference in New Issue
Block a user