Skip to content

Commit

Permalink
Update built files
Browse files Browse the repository at this point in the history
  • Loading branch information
hargasinski committed Apr 13, 2022
1 parent 4df6754 commit 8870da9
Show file tree
Hide file tree
Showing 4 changed files with 14,523 additions and 43 deletions.
3 changes: 3 additions & 0 deletions dist/async.js
Original file line number Diff line number Diff line change
Expand Up @@ -948,6 +948,9 @@ function createObjectIterator(obj) {
var len = okeys.length;
return function next() {
var key = okeys[++i];
if (key === '__proto__') {
return next();
}
return i < len ? {value: obj[key], key: key} : null;
};
}
Expand Down

0 comments on commit 8870da9

Please sign in to comment.