blob: 8ab8eac1c2c75fc4686294708a9b5f9bc2cf689e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
export const DO = (unit, bind) => f => {
const gen = f()
const next = acc => {
const {done, value} = gen.next(acc)
return done ? unit(value) : bind(value)(next)
}
return next()
}
|