All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.utils.userAgent.js Maven / Gradle / Ivy

There is a newer version: 2.11.8
Show newest version
export default function getUAString() {
  var uaData = navigator.userAgentData;

  if (uaData != null && uaData.brands) {
    return uaData.brands.map(function (item) {
      return item.brand + "/" + item.version;
    }).join(' ');
  }

  return navigator.userAgent;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy