aboutsummaryrefslogtreecommitdiff
path: root/src/wrapper.js
diff options
context:
space:
mode:
authorMarvin Borner2024-11-27 02:12:12 +0100
committerMarvin Borner2024-11-27 02:27:48 +0100
commit6da602b0a29afcd2aa15725547375a80e30b3983 (patch)
treebb268dc7935696c2687c4ec151c2e0108536fa6f /src/wrapper.js
initial commit
Diffstat (limited to 'src/wrapper.js')
-rw-r--r--src/wrapper.js8
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()
+}