File tree Expand file tree Collapse file tree
packages/core-js/internals Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616- Fixed closing iterator on ` IteratorValue ` errors in the internal ` iterate ` helper that affected some polyfills
1717- Fixed iterator closing in ` Array.from ` polyfill on failure to create array property
1818- Fixed order of arguments validation in ` Array.fromAsync ` polyfill
19+ - Fixed a lack of counter validation on ` MAX_SAFE_INTEGER ` in ` Array.fromAsync ` polyfill
1920- Fixed order of arguments validation in ` Array.prototype.flat ` polyfill
2021- Fixed handling strings as iterables in ` Iterator.{ zip, zipKeyed } ` polyfills
2122- Fixed some cases of iterators closing in ` Iterator.{ zip, zipKeyed } ` polyfills
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ var createMethod = function (TYPE) {
3434
3535 var loop = function ( ) {
3636 try {
37- if ( MAPPING ) try {
37+ try {
3838 doesNotExceedSafeInteger ( counter ) ;
3939 } catch ( error5 ) {
4040 return ifAbruptCloseAsyncIterator ( error5 ) ;
You can’t perform that action at this time.
0 commit comments