mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
393abed387
Signed-off-by: Leo Kettmeir <crowlkats@toaxl.com> Co-authored-by: Kenta Moriuchi <moriken@kimamass.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
10 lines
292 B
JavaScript
10 lines
292 B
JavaScript
const scope = import.meta.url.slice(-7) === "#worker" ? "worker" : "main";
|
|
|
|
console.log(scope, globalThis.GPU);
|
|
|
|
if (scope === "worker") {
|
|
postMessage("done");
|
|
} else {
|
|
const worker = new Worker(`${import.meta.url}#worker`, { type: "module" });
|
|
worker.onmessage = () => Deno.exit(0);
|
|
}
|