wishthis/node_modules/universal-user-agent/dist-web/index.js

13 lines
403 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
function getUserAgent() {
2022-04-08 10:55:35 +00:00
if (typeof navigator === "object" && "userAgent" in navigator) {
2022-01-21 08:28:41 +00:00
return navigator.userAgent;
}
2022-04-08 10:55:35 +00:00
if (typeof process === "object" && "version" in process) {
return `Node.js/${process.version.substr(1)} (${process.platform}; ${process.arch})`;
2022-01-21 08:28:41 +00:00
}
2022-04-08 10:55:35 +00:00
return "<environment undetectable>";
2022-01-21 08:28:41 +00:00
}
export { getUserAgent };
//# sourceMappingURL=index.js.map