0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/workers/worker_globals.ts

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();
};