fe-essential-utils
Version:
Essential utils for front-end development
1 lines • 526 B
JavaScript
;Object.defineProperty(exports,"__esModule",{value:!0}),exports.BrowserUtils=void 0;var isIEBrowser=function(){var r=window.navigator.userAgent,e=r.indexOf("MSIE ");return!!(e>0||navigator.userAgent.match(/Trident.*rv:11\./))},isSafariBrowser=function(){return!!navigator&&navigator.userAgent.indexOf("Safari")>-1},isIos=function(){return!!navigator&&/iPad|iPhone|iPod/.test(navigator.userAgent)},BrowserUtils={isIEBrowser:isIEBrowser,isSafariBrowser:isSafariBrowser,isIos:isIos};exports.BrowserUtils=BrowserUtils;