You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
505 B
14 lines
505 B
6 years ago
|
function 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;
|