it-reduce
Version:
Reduces the values yielded from an async iterator
64 lines (56 loc) • 1.52 kB
text/typescript
/**
* @packageDocumentation
*
* Reduce the values of an (async)iterable to a single value.
*
* @example
*
* ```javascript
* import reduce from 'it-reduce'
*
* // This can also be an iterator, generator, etc
* const values = [0, 1, 2, 3, 4]
*
* const result = reduce(values, (acc, curr, index) => acc + curr, 0)
*
* console.info(result) // 10
* ```
*
* Async sources must be awaited:
*
* ```javascript
* import reduce from 'it-reduce'
*
* const values = async function * () {
* yield * [0, 1, 2, 3, 4]
* }
*
* const result = await reduce(values(), (acc, curr, index) => acc + curr, 0)
*
* console.info(result) // 10
* ```
*/
function isAsyncIterable <T> (thing: any): thing is AsyncIterable<T> {
return thing[Symbol.asyncIterator] != null
}
/**
* Reduces the values yielded by an (async) iterable
*/
function reduce <T, V> (source: Iterable<T>, func: (acc: V, curr: T, index: number) => V, init: V): V
function reduce <T, V> (source: Iterable<T> | AsyncIterable<T>, func: (acc: V, curr: T, index: number) => V, init: V): Promise<V>
function reduce <T, V> (source: Iterable<T> | AsyncIterable<T>, func: (acc: V, curr: T, index: number) => V, init: V): Promise<V> | V {
let index = 0
if (isAsyncIterable(source)) {
return (async function () {
for await (const val of source) {
init = func(init, val, index++)
}
return init
})()
}
for (const val of source) {
init = func(init, val, index++)
}
return init
}
export default reduce