@sebgroup/frontend-tools
Version:
A set of frontend tools
13 lines (11 loc) • 325 B
JavaScript
/**
* 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