1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 06:46:59 -05:00
denoland-deno/cli/tests/testdata/workers/worker_navigator.ts
await-ovo 3ba09eacd2 fix(runtime): navigator.userAgent in web worker (#20129)
Fixes https://github.com/denoland/deno/issues/20079

---------

Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2023-08-21 18:23:27 +05:30

11 lines
229 B
TypeScript

onmessage = function () {
postMessage(
[
typeof navigator.language,
typeof navigator.languages,
typeof navigator.userAgent,
typeof navigator.hardwareConcurrency,
].join(", "),
);
close();
};