UNPKG
@jsoldi/hkt
Version:
latest (1.9.12)
1.9.12
1.9.10
1.9.9
1.9.8
1.9.7
1.9.6
1.9.5
1.9.4
1.9.3
1.9.2
1.9.1
1.9.0
1.8.3
1.8.2
1.6.2
1.6.1
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
Higher kinded types for typescript and a few utility monads.
github.com/jsoldi/hkt
jsoldi/hkt
@jsoldi/hkt
/
dist
/
types
/
free
/
monadFree.js
10 lines
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ functorFree }
from
"./functorFree.js"
;
/** Creates a free monad from a monad. */
export
function
monadFree
(
freeBase
) {
return
{ ...
functorFree
(freeBase), freeBase,
run
: freeBase.
runFree
, }; }
//# sourceMappingURL=monadFree.js.map