/** * Translates `STM` 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/stm/STM orDie */ export function orDie(self: STM): STM { return self.orDieWith(identity) }