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) 170 B
/** * Inserts values at the start of the iterable */ export declare function insert<T>(...values: T[]): (source: AsyncIterable<T>) => AsyncGenerator<T, void, unknown>;