antd
Version:
An enterprise-class UI design language and React components implementation
23 lines (19 loc) • 731 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = exports.isFlexSupported = void 0;
var isStyleSupport = function isStyleSupport(styleName) {
if (typeof window !== 'undefined' && window.document && window.document.documentElement) {
var styleNameList = Array.isArray(styleName) ? styleName : [styleName];
var documentElement = window.document.documentElement;
return styleNameList.some(function (name) {
return name in documentElement.style;
});
}
return false;
};
var isFlexSupported = isStyleSupport(['flex', 'webkitFlex', 'Flex', 'msFlex']);
exports.isFlexSupported = isFlexSupported;
var _default = isStyleSupport;
exports["default"] = _default;
;