UNPKG

@mui/x-internals

Version:

Utility functions for the MUI X packages (internal use only).

7 lines 136 B
export function isObjectEmpty(object) { // eslint-disable-next-line for (const _ in object) { return false; } return true; }