8 lines
183 B
JavaScript
8 lines
183 B
JavaScript
import { isPlainObject } from './isPlainObject.mjs';
|
|
|
|
function isEmptyObject(value) {
|
|
return isPlainObject(value) && Object.keys(value).length === 0;
|
|
}
|
|
|
|
export { isEmptyObject };
|