7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
function isEmpty(obj) {
|
|
for (let key in obj) {
|
|
// if the loop has started, there is a property
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|