UNPKG

@effect-ts/system

Version:

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

18 lines (16 loc) 386 B
import * as Map from "./map.mjs"; /** * Maps the success values of this stream to the specified constant value. */ export function as_(self, a2) { return Map.map_(self, _ => a2); } /** * Maps the success values of this stream to the specified constant value. * * @ets_data_first as_ */ export function as(a2) { return self => as_(self, a2); } //# sourceMappingURL=as.mjs.map