We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812bcef commit eef45a8Copy full SHA for eef45a8
src/browser.ts
@@ -37,7 +37,7 @@ const browserIDMap: { [id: string]: BrowserID } = {
37
export function detectBrowser(ua: string): Browser {
38
const bowserInst = Bowser.getParser(ua);
39
let bid: BrowserID = "unknown";
40
- let version = (bowserInst.getBrowserVersion() || '').toString();
+ let version = (bowserInst.getBrowserVersion() || "").toString();
41
for (const b in browserIDMap) {
42
if (bowserInst.getBrowserName().toLowerCase() === b) {
43
bid = browserIDMap[b];
0 commit comments