UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

16 lines (13 loc) 459 B
// 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<C>(__trace?: string) { return <R, E, A>(self: Effect<R, E, A>) => joinEither_(environment<C>(), self, __trace) }