@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
17 lines (14 loc) • 409 B
text/typescript
// ets_tracing: off
import type { Cause } from "../Cause/index.js"
import { foldCauseM_, succeed } from "./core.js"
import type { Effect } from "./effect.js"
import { fail } from "./fail.js"
/**
* Exposes the full cause of failure of this effect.
*/
export function sandbox<R, E, A>(
fa: Effect<R, E, A>,
__trace?: string
): Effect<R, Cause<E>, A> {
return foldCauseM_(fa, fail, succeed, __trace)
}