Files
manolia-alpha/node_modules/fp-ts/lib/FromThese.js
Robin COuret e0e50af706 init component
2026-02-16 17:28:37 +01:00

13 lines
372 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.fromTheseK = fromTheseK;
/**
* The `FromThese` type class represents those data types which support errors and warnings.
*
* @since 2.11.0
*/
var function_1 = require("./function");
function fromTheseK(F) {
return function (f) { return (0, function_1.flow)(f, F.fromThese); };
}