UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

3 lines 229 B
export declare function toLazy<T>(iterable: Iterable<T>): Generator<T, void, undefined>; export declare function toLazyAsync<T>(iterable: AsyncIterable<T>): AsyncGenerator<T, void, undefined>; //# sourceMappingURL=toLazy.d.ts.map