UNPKG

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) 314 B
import { GEN } from "./utils"; declare type Drop<TYPE extends "sync" | "async"> = { <T>(amount: number, gen: GEN<TYPE, T>): GEN<TYPE, T>; (amount: number): <T>(gen: GEN<TYPE, T>) => GEN<TYPE, T>; }; export declare const drop: Drop<"sync">; export declare const dropAsync: Drop<"async">; export {};