/** * A variant of `flatMap` that ignores the value produced by this effect. * * @tsplus static effect/core/io/Effect.Aspects zipRight * @tsplus pipeable effect/core/io/Effect zipRight * @tsplus pipeable-operator effect/core/io/Effect > */ export function zipRight(that: Effect) { return (self: Effect): Effect => self.flatMap(() => that) }