mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
|
// This time ./worker.ts is not in the module map, so the worker
|
||
|
// initialization will fail unless worker.js is passed as a side module.
|
||
|
|
||
|
const worker = new Worker(
|
||
|
new URL("./worker.ts", import.meta.url),
|
||
|
{ type: "module" },
|
||
|
);
|
||
|
|
||
|
setTimeout(() => {
|
||
|
worker.postMessage(42);
|
||
|
}, 500);
|