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

10 lines
248 B
JavaScript

/**
* The `FromThese` type class represents those data types which support errors and warnings.
*
* @since 2.11.0
*/
import { flow } from './function';
export function fromTheseK(F) {
return function (f) { return flow(f, F.fromThese); };
}