/** * Maps the success value of this effect to the specified constant value. * * @tsplus static effect/core/stm/STM.Aspects as * @tsplus pipeable effect/core/stm/STM as */ export function as(b: B) { return (self: STM): STM => self.map(() => b) }