LendAndRegret/node_modules/es-toolkit/dist/predicate/isEmptyObject.mjs
2026-05-02 17:27:43 +08:00

8 lines
183 B
JavaScript

import { isPlainObject } from './isPlainObject.mjs';
function isEmptyObject(value) {
return isPlainObject(value) && Object.keys(value).length === 0;
}
export { isEmptyObject };