You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The specific performance 3.18.0: HTMLAllCollection.prototype.forEach // Function 3.18.1: HTMLAllCollection.prototype.forEach // undefined packages/core-js/internals/dom-iterables.js
var global = require('../internals/global');
var DOMIterables = require('../internals/dom-iterables');
var DOMTokenListPrototype = require('../internals/dom-token-list-prototype');
var forEach = require('../internals/array-for-each');
var createNonEnumerableProperty = require('../internals/create-non-enumerable-property');
var handlePrototype = function (CollectionPrototype) {
// some Chrome versions have non-configurable methods on DOMTokenList
if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {
createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);
} catch (error) {
CollectionPrototype.forEach = forEach;
}
};
for (var COLLECTION_NAME in DOMIterables) {
+ if (DOMIterables[COLLECTION_NAME]) {
handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype);
+ }
}
handlePrototype(DOMTokenListPrototype);
The text was updated successfully, but these errors were encountered:
The specific performance
3.18.0
: HTMLAllCollection.prototype.forEach // Function3.18.1
: HTMLAllCollection.prototype.forEach // undefinedpackages/core-js/internals/dom-iterables.js
packages/core-js/modules/web.dom-collections.for-each.js
The text was updated successfully, but these errors were encountered: