/** * Returns a new effect that ignores the success or failure of this effect. * * @tsplus getter effect/core/stm/STM ignore */ export function ignore(self: STM): STM { return self.fold(() => undefined, () => undefined) }