UNPKG
rsite-funjs
Version:
latest (1.0.20)
1.0.20
1.0.19
1.0.18
1.0.17
1.0.16
1.0.15
1.0.13
functional javascript
github.com/neu-rah/funjs
neu-rah/funjs
rsite-funjs
/
src
/
Applicative.js
6 lines
(5 loc)
•
115 B
JavaScript
View Raw
1
2
3
4
5
6
"use strict"
;
// pure :: a -> f a
exports
.
pure
=
o
=>
o.
pure
// (<*>) :: f (a -> b) -> f a -> f b
exports
.
app
=
o
=>
o.
app