mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
11 lines
383 B
TypeScript
11 lines
383 B
TypeScript
export default function isFlexSupported() {
|
|
if (typeof window !== 'undefined' && window.document && window.document.documentElement) {
|
|
const { documentElement } = window.document;
|
|
return 'flex' in documentElement.style ||
|
|
'webkitFlex' in documentElement.style ||
|
|
'Flex' in documentElement.style ||
|
|
'msFlex' in documentElement.style;
|
|
}
|
|
return false;
|
|
}
|