UNPKG

@sebgroup/frontend-tools

Version:
13 lines (11 loc) 325 B
/** * 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); } export { isBrowserOpera }; //# sourceMappingURL=isBrowserOpera.js.map