import { WorkerSandbox } from "./worker_sandbox.ts"; import type { Plug } from "../plug.ts"; import type { SandboxFactory } from "./sandbox.ts"; export function createSandbox(workerUrl: URL): SandboxFactory { return (plug: Plug) => new WorkerSandbox(plug, workerUrl); }