@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
12 lines (11 loc) • 381 B
JavaScript
// ets_tracing: off
import { done as effectDone } from "../Effect/done.mjs";
import { completeWith } from "./completeWith.mjs";
/**
* Exits the promise with the specified exit, which will be propagated to all
* fibers waiting on the value of the promise.
*/
export function done(e) {
return promise => completeWith(effectDone(e))(promise);
}
//# sourceMappingURL=done.mjs.map