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

6 lines
258 B
JavaScript

export default 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');
}