dashp
Version:
Utilities for monadic promises.
15 lines (10 loc) • 345 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _Future = require("./Future");
var _curry = require("./internal/curry");
var _default = (0, _curry.curry3)("compose", (f, g, x) => (0, _Future.of)(x).then(f).then(g));
exports.default = _default;
//# sourceMappingURL=compose.js.map