@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) • 441 B
text/typescript
// ets_tracing: off
import { identity } from "../Function/index.js"
import { some } from "../Option/index.js"
import type { Effect } from "./effect.js"
import { unrefineWith_ } from "./unrefine.js"
/**
* Unearth the unchecked failure of the effect. (opposite of `orDie`)
*/
export function resurrect<R, E, A>(
self: Effect<R, E, A>,
__trace?: string
): Effect<R, unknown, A> {
return unrefineWith_(self, some, identity, __trace)
}