UNPKG

rubico

Version:

[a]synchronous functional programming

15 lines (14 loc) 293 B
export = NextIteration; /** * @name NextIteration * * @synopsis * NextIteration(value any) -> nextIteration { value, done: false } * * @description * Create an object to send for the next iteration */ declare function NextIteration(value: any): { value: any; done: boolean; };