mirror of
https://github.com/denoland/deno.git
synced 2025-02-09 07:41:33 -05:00
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
const w = new Worker(
|
|
new URL("subdir/worker_unstable.ts", import.meta.url).href,
|
|
{
|
|
type: "module",
|
|
deno: true,
|
|
name: "Unstable Worker",
|
|
},
|
|
);
|
|
|
|
w.postMessage({});
|