summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/workers/worker_location.ts
blob: c3c1bb26ffdd6a67940026740aa91b1b90edea6c (plain)
1
2
3
4
5
6
onmessage = function () {
  postMessage(
    `${location.href}, ${location instanceof WorkerLocation}`,
  );
  close();
};