mirror of
https://github.com/denoland/deno.git
synced 2024-11-15 16:43:44 -05:00
11 lines
181 B
TypeScript
11 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({});
|