UNPKG

crystalline

Version:

A modern utility library with a strong emphasis on readability. Make your code crystal clear.

7 lines (6 loc) 190 B
declare const sequenceFrom: <T>(rule: (a: T) => any) => { startingWith: (seed: T) => { untilCondition: (terminator: (a: T) => boolean) => T[]; }; }; export { sequenceFrom };