UNPKG

@effect-ts/system

Version:

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

7 lines 302 B
import { AtomicReference } from "../Support/AtomicReference/index.mjs"; import { Promise } from "./promise.mjs"; import { Pending } from "./state.mjs"; export function unsafeMake(fiberId) { return new Promise(new AtomicReference(new Pending([])), [fiberId]); } //# sourceMappingURL=unsafeMake.mjs.map