polyfill-library 4.0.0 → 4.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ {"dependencies":["_ArrayIterator","Symbol.iterator"],"browsers":{"edge":"<18","edge_mob":"<18","chrome":"<51","firefox":"<13","ie":"*","safari":"<10"},"detectSource":"\"Symbol\"in self&&\"iterator\"in self.Symbol&&self.Symbol.iterator in self.HTMLCollection.prototype&&\"function\"==typeof self.HTMLCollection.prototype[self.Symbol.iterator]\n","baseDir":"HTMLCollection/prototype/@@iterator","hasTests":true,"isTestable":true,"isPublic":true,"size":85}
@@ -0,0 +1 @@
1
+ HTMLCollection.prototype[Symbol.iterator]=function(){return new ArrayIterator(this)};
@@ -0,0 +1,6 @@
1
+
2
+ // HTMLCollection.prototype.@@iterator
3
+ /* global Symbol, ArrayIterator*/
4
+ HTMLCollection.prototype[Symbol.iterator] = function () {
5
+ return new ArrayIterator(this);
6
+ };