mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
24 lines
555 B
JavaScript
24 lines
555 B
JavaScript
/**
|
|
* The base implementation of `sum` and `sumBy`.
|
|
*
|
|
* @private
|
|
* @param {Array} array The array to iterate over.
|
|
* @param {Function} iteratee The function invoked per iteration.
|
|
* @returns {number} Returns the sum.
|
|
*/
|
|
function baseSum(array, iteratee) {
|
|
let result;
|
|
let index = -1;
|
|
const length = array.length;
|
|
|
|
while (++index < length) {
|
|
const current = iteratee(array[index]);
|
|
if (current !== undefined) {
|
|
result = result === undefined ? current : (result + current);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
export default baseSum;
|