mirror of
https://github.com/denoland/deno.git
synced 2025-01-07 06:46:59 -05:00
3ba09eacd2
Fixes https://github.com/denoland/deno/issues/20079 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
onmessage = function () {
|
|
postMessage(
|
|
[
|
|
typeof navigator.language,
|
|
typeof navigator.languages,
|
|
typeof navigator.userAgent,
|
|
typeof navigator.hardwareConcurrency,
|
|
].join(", "),
|
|
);
|
|
close();
|
|
};
|