Testing actions

This commit is contained in:
Janos 2021-07-28 08:24:31 +02:00
commit 8a260b16ec
No known key found for this signature in database
GPG key ID: 465EF45E51CBA2BA
340 changed files with 72676 additions and 0 deletions

9
node_modules/universal-user-agent/dist-src/index.js generated vendored Normal file
View file

@ -0,0 +1,9 @@
export function getUserAgent() {
if (typeof navigator === "object" && "userAgent" in navigator) {
return navigator.userAgent;
}
if (typeof process === "object" && "version" in process) {
return `Node.js/${process.version.substr(1)} (${process.platform}; ${process.arch})`;
}
return "<environment undetectable>";
}