mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
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();
|
|
};
|