mirror of
https://github.com/denoland/deno.git
synced 2024-11-04 08:54:20 -05:00
10 lines
301 B
TypeScript
10 lines
301 B
TypeScript
onmessage = (msg): void => {
|
|
if (msg.data === "START") {
|
|
postMessage("no_ns.ts: is window.Deno available: " + !!window.Deno);
|
|
} else {
|
|
const worker = new Worker("./maybe_ns.ts");
|
|
worker.onmessage = (msg): void => {
|
|
postMessage("[SPAWNED BY no_ns.ts] " + msg.data);
|
|
};
|
|
}
|
|
};
|