mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
41cad2179f
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();
|
|
};
|