UNPKG

axax

Version:

A library of async iterator extensions for JavaScript including ```map```, ```reduce```, ```filter```, ```flatMap```, ```pipe``` and [more](https://github.com/jamiemccrindle/axax/blob/master/docs/API.md#functions).

7 lines (6 loc) 169 B
/** * Merges iterables * * @param sources the iterables to merge */ export declare function merge<T>(...sources: Array<AsyncIterable<T>>): AsyncIterableIterator<T>;