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) 217 B
/** * Skipwhile emitted values from source until provided expression is false. */ export declare function skipWhile<T>(predicate?: (t: T) => boolean): (source: AsyncIterable<T>) => AsyncGenerator<T, void, unknown>;