wishthis/node_modules/universal-user-agent/dist-web/index.js
2022-01-21 09:28:41 +01:00

11 lines
202 B
JavaScript

function getUserAgent() {
try {
return navigator.userAgent;
}
catch (e) {
return "<environment unknown>";
}
}
export { getUserAgent };
//# sourceMappingURL=index.js.map