Skip to content

Commit 8870da9

Browse files
committed
Update built files
1 parent 4df6754 commit 8870da9

File tree

4 files changed

+14523
-43
lines changed

4 files changed

+14523
-43
lines changed

dist/async.js

+3
Original file line numberDiff line numberDiff line change
@@ -948,6 +948,9 @@ function createObjectIterator(obj) {
948948
var len = okeys.length;
949949
return function next() {
950950
var key = okeys[++i];
951+
if (key === '__proto__') {
952+
return next();
953+
}
951954
return i < len ? {value: obj[key], key: key} : null;
952955
};
953956
}

0 commit comments

Comments
 (0)