@sebgroup/frontend-tools
Version:
A set of frontend tools
15 lines (11 loc) • 327 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
/**
* Check if the current browser is Edge
* @returns {boolean} True if Edge
*/
function isBrowserEdge() {
return !window.isIE && !!window.StyleMedia;
}
exports.isBrowserEdge = isBrowserEdge;
//# sourceMappingURL=isBrowserEdge.js.map