mirror of
https://github.com/denoland/deno.git
synced 2025-12-23 08:48:24 +00:00
7 lines
109 B
JavaScript
7 lines
109 B
JavaScript
self.onmessage = () => {
|
|
postMessage("hello from worker");
|
|
};
|
|
|
|
setTimeout(() => {
|
|
self.close();
|
|
}, 100);
|