UNPKG

@mui/x-internals

Version:

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

13 lines (12 loc) 248 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isObjectEmpty = isObjectEmpty; function isObjectEmpty(object) { // eslint-disable-next-line for (const _ in object) { return false; } return true; }