UNPKG

util-ex

Version:

Browser-friendly enhanced util fully compatible with standard node.js

8 lines (7 loc) 231 B
/** * 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: any): boolean; export default isEmptyObject;