/** * Replaces the success value with the one provided. * * @tsplus static effect/core/io/Exit.Aspects as * @tsplus pipeable effect/core/io/Exit as */ export function as(value: A1) { return (self: Exit): Exit => self.map(() => value) }