@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
11 lines (10 loc) • 326 B
JavaScript
import { chain_ } from "../core.mjs";
import { fromEither } from "./fromEither.mjs";
/**
* Submerges the error case of an `Either` into the `Managed`. The inverse
* operation of `Managed.either`.
*/
export function absolve(self, __trace) {
return chain_(self, fromEither, __trace);
}
//# sourceMappingURL=absolve.mjs.map