UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

10 lines (9 loc) 275 B
import { foldCauseM_, succeed } from "./core.mjs"; import { fail } from "./fail.mjs"; /** * Exposes the full cause of failure of this effect. */ export function sandbox(fa, __trace) { return foldCauseM_(fa, fail, succeed, __trace); } //# sourceMappingURL=sandbox.mjs.map