/** * Takes some fiber failures and converts them into errors. * * @tsplus static effect/core/io/Effect.Aspects unrefine * @tsplus pipeable effect/core/io/Effect unrefine */ export function unrefine( pf: (u: unknown) => Maybe ) { return (self: Effect): Effect => self.unrefineWith(pf, identity) }