/** * @tsplus pipeable-operator effect/core/io/Logger < * @tsplus static effect/core/io/Logger zipLeft * @tsplus pipeable effect/core/io/Logger zipLeft */ export function zipLeft(that: Logger) { return (self: Logger): Logger => (self + that).map((tuple) => tuple[0] as Output) }