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