/** * Translates effect failure into death of the fiber, making all failures * unchecked and not a part of the type of the effect. * * @tsplus getter effect/core/io/Effect orDie */ export function orDie(self: Effect): Effect { return self.orDieWith(identity) }