blob: 90e369e418d27d5f1fb27a1191176ce4d61c8081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
onmessage = function () {
postMessage(
[
self instanceof DedicatedWorkerGlobalScope,
self instanceof WorkerGlobalScope,
self instanceof EventTarget,
// TODO(nayeemrmn): Add `WorkerNavigator` to deno_lint globals.
// deno-lint-ignore no-undef
navigator instanceof WorkerNavigator,
].join(", "),
);
close();
};
|