ramda-generators
Version:
A collection of lazily evaluated generators and functions to work with generators in Javascript and Typescript, following the style of Ramda's functions
9 lines (8 loc) • 361 B
TypeScript
import { GEN } from "./utils";
declare type TakeWhile<TYPE extends "sync" | "async"> = {
<T>(cond: (el: T) => boolean, list: GEN<TYPE, T>): GEN<TYPE, T>;
<T>(cond: (el: T) => boolean): (list: GEN<TYPE, T>) => GEN<TYPE, T>;
};
export declare const takeWhile: TakeWhile<"sync">;
export declare const takeWhileAsync: TakeWhile<"async">;
export {};