This message was deleted.
# ask-questions
w
This message was deleted.
f
For GA4, that comes from Google
This is what our HTML Client SDK uses
Copy code
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
    };
  }
p
Oh, ok. Thank you @fresh-football-47124