// ets_tracing: off import type { Effect } from "./effect.js" import { environment } from "./environment.js" import { joinEither_ } from "./join.js" /** * Returns this effect if environment is on the right, otherwise returns * whatever is on the left unmodified. Note that the result is lifted * in either. */ export function onRight(__trace?: string) { return (self: Effect) => joinEither_(environment(), self, __trace) }