UNPKG
monads-co
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
An implementation of Haskell's type classes in TS
calebowens/monads
monads-co
/
out
/
constant.js
6 lines
•
208 B
JavaScript
View Raw
1
2
3
4
5
6
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
constant
=
void
0
;
const
constant
= (
a
) =>
(
b
) =>
a;
exports
.
constant
= constant;
//# sourceMappingURL=constant.js.map