@mui/material
Version:
Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
12 lines (11 loc) • 360 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isLayoutSupported;
function isLayoutSupported() {
return !(/jsdom|HappyDOM/.test(window.navigator.userAgent) ||
// TODO(v9): Remove the test environment check
// eslint-disable-next-line mui/consistent-production-guard
process.env.NODE_ENV === 'test');
}