diff options
author | Marvin Borner | 2024-11-27 02:12:12 +0100 |
---|---|---|
committer | Marvin Borner | 2024-11-27 02:27:48 +0100 |
commit | 6da602b0a29afcd2aa15725547375a80e30b3983 (patch) | |
tree | bb268dc7935696c2687c4ec151c2e0108536fa6f /src/wrapper.js |
initial commit
Diffstat (limited to 'src/wrapper.js')
-rw-r--r-- | src/wrapper.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wrapper.js b/src/wrapper.js new file mode 100644 index 0000000..8ab8eac --- /dev/null +++ b/src/wrapper.js @@ -0,0 +1,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() +} |