blob: f262423069eeaeff6c3bbe11d73512cf7cdb25c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
onmessage = function (): void {
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();
};
|