mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
14 lines
509 B
TypeScript
14 lines
509 B
TypeScript
const isStyleSupport = (styleName: string | Array<string>): boolean => {
|
|
if (typeof window !== 'undefined' && window.document && window.document.documentElement) {
|
|
const styleNameList = Array.isArray(styleName) ? styleName : [styleName];
|
|
const { documentElement } = window.document;
|
|
|
|
return styleNameList.some(name => name in documentElement.style);
|
|
}
|
|
return false;
|
|
};
|
|
|
|
export const isFlexSupported = isStyleSupport(['flex', 'webkitFlex', 'Flex', 'msFlex']);
|
|
|
|
export default isStyleSupport;
|