summaryrefslogtreecommitdiff
path: root/tests/testdata/workers/worker_navigator.ts
blob: bd364a8f947e2795062bd392a28fe978d81ac10d (plain)
1
2
3
4
5
6
7
8
9
10
11
onmessage = function () {
  postMessage(
    [
      typeof navigator.language,
      typeof navigator.languages,
      typeof navigator.userAgent,
      typeof navigator.hardwareConcurrency,
    ].join(", "),
  );
  close();
};