2026-03-09 06:28:03 +00:00

12 lines
360 B
JavaScript

"use strict";
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');
}