@haiku/player
Version:
Haiku Player is a JavaScript library for building user interfaces
17 lines • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function isIE(window) {
if (!window) {
return false;
}
if (!window.navigator) {
return false;
}
if (!window.navigator.userAgent) {
return false;
}
return (window.navigator.userAgent.indexOf('MSIE') !== -1 ||
navigator.appVersion.indexOf('Trident') > 0);
}
exports.default = isIE;
//# sourceMappingURL=isIE.js.map