util-ex
Version:
Browser-friendly enhanced util fully compatible with standard node.js
14 lines (13 loc) • 333 B
JavaScript
/**
* Check if an object is empty.
* @param {Object} obj - The object to be checked.
* @returns {boolean} - Whether the object is empty or not.
*/
export function isEmptyObject(obj) {
// eslint-disable-next-line no-unreachable-loop
for (const k in obj) {
return false;
}
return true;
};
export default isEmptyObject;