summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/check-worker-globals/1.0.0/index.js
blob: 8da68f7914c9f45a1353df818edc4be1d839277a (plain)
1
2
3
4
5
6
7
if (typeof self !== "undefined") {
  throw new Error("self is defined");
}

if (typeof WorkerGlobalScope !== "undefined") {
  throw new Error("WorkerGlobalScope is defined");
}