1
0
Files

12 lines
207 B
JavaScript
Raw Permalink Normal View History

2020-05-15 15:25:57 -04:00
function getUserAgent() {
try {
return navigator.userAgent;
}
catch (e) {
return "<environment undetectable>";
}
}
export { getUserAgent };
//# sourceMappingURL=index.js.map