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

12 lines
202 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
function getUserAgent() {
try {
return navigator.userAgent;
}
catch (e) {
return "<environment unknown>";
}
}
export { getUserAgent };
//# sourceMappingURL=index.js.map