import { TerminationStrategy } from "@effect/core/stream/Stream//TerminationStrategy" /** * Merges this stream and the specified stream together, discarding the values * from the right stream. * * @tsplus static effect/core/stream/Stream.Aspects mergeLeft * @tsplus pipeable effect/core/stream/Stream mergeLeft */ export function mergeLeft( that: Stream, strategy: TerminationStrategy = TerminationStrategy.Both ) { return (self: Stream): Stream => self.merge(that.drain, strategy) }