UNPKG

@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) 307 B
import { descriptorWith } from "./core.mjs"; /** * Passes the fiber's scope to the specified function, which creates an effect * that will be returned from this method. */ export function scopeWith(f, __trace) { return descriptorWith(d => f(d.scope), __trace); } //# sourceMappingURL=scopeWith.mjs.map