UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

4 lines 349 B
import { AnyIterableValue, IterableValue } from "../common/helpers"; export declare function spread<T, R, N>(iterator: Iterator<T, R, N>): Generator<IterableValue<T>, R, undefined>; export declare function spreadAsync<T, R, N>(iterator: AsyncIterator<T, R, N>): AsyncGenerator<AnyIterableValue<T>, R, undefined>; //# sourceMappingURL=spread.d.ts.map