summaryrefslogtreecommitdiff
path: root/cli/tests/subdir/worker_globals.ts
blob: a9e7efd85c0e8b398a83097162ec080be6f05f14 (plain)
1
2
3
4
5
6
7
8
9
10
onmessage = function (): void {
  postMessage(
    [
      self instanceof DedicatedWorkerGlobalScope,
      self instanceof WorkerGlobalScope,
      self instanceof EventTarget,
    ].join(", "),
  );
  close();
};