6 lines
88 B
JavaScript
6 lines
88 B
JavaScript
function isEmpty(obj) {
|
|
for(var key in obj) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|