// Returns true if the object has no properties, false otherwise
const isEmpty = obj => Object.keys(obj).length === 0;
// Example Usage:
console.log(isEmpty({})); // Output: true
console.log(isEmpty({ a: 1 })); // Output: false
We Need to work on this, for syntax highlighting