UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

13 lines (11 loc) 522 B
export function isFlexSupported() { if (typeof window !== 'undefined' && window.document && window.document.documentElement) { var documentElement = window.document.documentElement; return 'flex' in documentElement.style || 'webkitFlex' in documentElement.style || 'Flex' in documentElement.style || 'msFlex' in documentElement.style; } return false; } export function getStyle(el, property) { return +getComputedStyle(el).getPropertyValue(property).replace('px', ''); } //# sourceMappingURL=utils.js.map