@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
10 lines (9 loc) • 297 B
JavaScript
import * as Chain from "./chain.mjs";
import * as Environment from "./environment.mjs";
/**
* Accesses the environment of the stream in the context of a stream.
*/
export function accessStream(f) {
return Chain.chain_(Environment.environment(), f);
}
//# sourceMappingURL=accessStream.mjs.map