@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
11 lines (10 loc) • 378 B
JavaScript
// ets_tracing: off
import * as H from "../../../Hub/index.mjs";
import * as FromQueueWithShutdown from "./fromQueueWithShutdown.mjs";
/**
* Create a sink which enqueues each element into the specified queue.
*/
export function fromHubWithShutdown(hub) {
return FromQueueWithShutdown.fromQueueWithShutdown(H.toQueue(hub));
}
//# sourceMappingURL=fromHubWithShutdown.mjs.map