bump deps
Setup ossutil / build (push) Failing after 25s

This commit is contained in:
EnokMan
2020-11-10 04:40:33 +00:00
parent 5e2b73afba
commit a0ac4f99d2
687 changed files with 77516 additions and 67970 deletions
+9
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>";
}