@sebgroup/frontend-tools
Version:
A set of frontend tools
17 lines (13 loc) • 418 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
/**
* Check if the current browser is Opera
* @returns {boolean} True if Opera
*/
function isBrowserOpera() {
return ((!!window.opr && !!window.opr.addons) ||
!!window.opera ||
navigator.userAgent.indexOf(" OPR/") >= 0);
}
exports.isBrowserOpera = isBrowserOpera;
//# sourceMappingURL=isBrowserOpera.js.map