This commit is contained in:
Ilya Kantor 2019-02-21 18:47:25 +03:00
parent b180a943ba
commit 360be9ed99

View file

@ -1,7 +1,7 @@
function isEmpty(obj) {
for (let key in obj) {
// if the loop has started, there is a prorty
// if the loop has started, there is a property
return false;
}
return true;
}
}