mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
5f7c80986f
Fixes #8257
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({});
|