Files
lodash/_createBaseEach.js
2017-01-08 23:37:20 -08:00

33 lines
883 B
JavaScript

import isArrayLike from './isArrayLike.js';
/**
* Creates a `baseEach` or `baseEachRight` function.
*
* @private
* @param {Function} eachFunc The function to iterate over a collection.
* @param {boolean} [fromRight] Specify iterating from right to left.
* @returns {Function} Returns the new base function.
*/
function createBaseEach(eachFunc, fromRight) {
return (collection, iteratee) => {
if (collection == null) {
return collection;
}
if (!isArrayLike(collection)) {
return eachFunc(collection, iteratee);
}
const length = collection.length;
const iterable = Object(collection);
let index = fromRight ? length : -1;
while ((fromRight ? index-- : ++index < length)) {
if (iteratee(iterable[index], index, iterable) === false) {
break;
}
}
return collection;
};
}
export default createBaseEach;