prehistoric-beard-84272
03/12/2025, 10:28 AMfresh-football-47124
fresh-football-47124
fresh-football-47124
function getBrowserDevice(ua) {
const browser = ua.match(/Edg/) ? "edge" : ua.match(/Chrome/) ? "chrome" : ua.match(/Firefox/) ? "firefox" : ua.match(/Safari/) ? "safari" : "unknown";
const deviceType = ua.match(/Mobi/) ? "mobile" : "desktop";
return {
browser,
deviceType
};
}
prehistoric-beard-84272
03/12/2025, 5:49 PM