update modules

This commit is contained in:
s2
2020-06-08 08:50:28 +02:00
parent ae4aaf2668
commit 27635904a6
477 changed files with 20385 additions and 35036 deletions

View File

@@ -245,12 +245,13 @@ try {
function iterator(self, callback) {
var items = [];
self.forEach(callback, items);
/* istanbul ignore next */
return iterable ?
items[Symbol.iterator]() :
{
next: function() {
var value = items.shift();
return {done: value === undefined, value: value};
return {done: value === void 0, value: value};
}
};
}