Merge pull request #222 from usernamehw/patch-3

Spacing
This commit is contained in:
Ilya Kantor 2017-10-01 07:26:11 +03:00 committed by GitHub
commit 5ad8c9f4bd

View file

@ -2,7 +2,7 @@ Just loop over the object and `return false` immediately if there's at least one
```js
function isEmpty(obj) {
for(let key in obj) {
for (let key in obj) {
return false;
}
return true;