wishthis/node_modules/universal-user-agent/dist-src/browser.js

9 lines
149 B
JavaScript
Raw Normal View History

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