@sebgroup/frontend-tools
Version:
A set of frontend tools
15 lines (11 loc) • 316 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
/**
* Check if the current browser is IE
* @returns {boolean} True if IE
*/
function isBrowserIE() {
return /*@cc_on!@*/ !!document.documentMode;
}
exports.isBrowserIE = isBrowserIE;
//# sourceMappingURL=isBrowserIE.js.map