UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

49 lines (37 loc) 1.22 kB
let cached = null; /** * https://stackoverflow.com/questions/5916900/how-can-you-detect-the-version-of-a-browser * @returns {{name:String, version:Number}} */ export function browserInfo() { if (cached !== null) { return cached; } const navigator = globalThis.navigator; if(navigator === undefined){ throw new Error('Not a browser, globalThis.navigator is undefined'); } let ua = navigator.userAgent, tem, M = ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || []; if (/trident/i.test(M[1])) { tem = /\brv[ :]+(\d+)/g.exec(ua) || []; return { name: 'IE', version: (tem[1] || '') }; } if (M[1] === 'Chrome') { tem = ua.match(/\bOPR|Edge\/(\d+)/) if (tem != null) { return { name: 'Opera', version: tem[1] }; } } M = M[2] ? [M[1], M[2]] : [navigator.appName, navigator.appVersion, '-?']; if ((tem = ua.match(/version\/(\d+)/i)) != null) { M.splice(1, 1, tem[1]); } const result = { name: M[0], version: M[1] }; //cache the result cached = result; return result; }