Latest updates from IceHrmPro
This commit is contained in:
16
web/node_modules/rc-steps/lib/utils.js
generated
vendored
Normal file
16
web/node_modules/rc-steps/lib/utils.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.isFlexSupported = isFlexSupported;
|
||||
|
||||
// eslint-disable-next-line import/prefer-default-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;
|
||||
}
|
||||
Reference in New Issue
Block a user