UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

3 lines 327 B
export declare function every<T, R, N>(iterator: Iterator<T, R, N>, predicate: (value: T, index: number) => boolean): boolean; export declare function everyAsync<T, R, N>(iterator: AsyncIterator<T, R, N>, predicate: (value: T, index: number) => boolean | Promise<boolean>): Promise<boolean>; //# sourceMappingURL=every.d.ts.map