Update node modules

This commit is contained in:
marocchino 2021-01-21 07:02:35 +09:00
parent d10bd849a0
commit 56ced276ec
No known key found for this signature in database
GPG key ID: AFF521DBDB122570
585 changed files with 125490 additions and 100312 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>";
}