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).

5 lines (4 loc) 156 B
/** * Zips two iterables */ export declare function zip<T>(first: AsyncIterable<T>): (second: AsyncIterable<T>) => AsyncGenerator<[T, T], void, unknown>;