es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
15 lines (13 loc) • 395 B
JavaScript
async function reduceAsync(array, reducer, initialValue) {
let startIndex = 0;
if (initialValue == null) {
initialValue = array[0];
startIndex = 1;
}
let accumulator = initialValue;
for (let i = startIndex; i < array.length; i++) {
accumulator = await reducer(accumulator, array[i], i, array);
}
return accumulator;
}
export { reduceAsync };