UNPKG

igogo

Version:

Fast Either and Maybe from Fantasy Land with Flow and TypeScript support

13 lines (9 loc) 213 B
/* @flow */ export const next = () => ({ value: undefined, done: true }); export const toEmptyIterator = () => { const iterator = { [Symbol.iterator]: () => iterator, next, }; return iterator; };