@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
13 lines (10 loc) • 348 B
text/typescript
// ets_tracing: off
import * as E from "../Either/index.js"
import { chain_, succeed, succeedWith } from "./core.js"
import { fail } from "./fail.js"
/**
* Lifts an `Either` into a `Effect` value.
*/
export function fromEither<E, A>(f: () => E.Either<E, A>, __trace?: string) {
return chain_(succeedWith(f), E.fold(fail, succeed), __trace)
}