We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5797c99 commit c6442acCopy full SHA for c6442ac
examples/monad.js renamed to examples/16-monad.js
@@ -1,5 +1,13 @@
1
const { Box } = require('../examples/lib')
2
3
+
4
+// httpGet('/user')
5
+// .chain(user => httpGet(`/comments/${user.id}`)
6
7
+// // chain inside to access both user and comments in the closure
8
+// .chain(comments => updateDom(user, comments))
9
+// )
10
11
// uwrapping Box,
12
// i.e. takes Box(x) and returns x
13
const join = m =>
0 commit comments