mirror of
https://github.com/faisalman/ua-parser-js.git
synced 2025-11-18 15:50:36 +03:00
362 B
362 B
getUA():string
Get user-agent string of current instance
Code Example
// Try to run this code on a browser
const parser = new UAParser();
// This will print the user-agent of current browser
console.log(parser.getUA());
// Replace the user-agent value
parser.setUA('Mozilla/5.0 MyBrowser/1.0');
parser.getUA();
// "Mozilla/5.0 MyBrowser/1.0"