mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
|
onmessage = function () {
|
||
|
postMessage(
|
||
|
[
|
||
|
typeof navigator.language,
|
||
|
typeof navigator.languages,
|
||
|
typeof navigator.userAgent,
|
||
|
typeof navigator.hardwareConcurrency,
|
||
|
].join(", "),
|
||
|
);
|
||
|
close();
|
||
|
};
|