@@ -167,10 +167,10 @@ structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
167167 - [ New ` Set ` methods] ( #new-set-methods )
168168 - [ ` Math.sumPrecise ` ] ( #mathsumprecise )
169169 - [ Stage 3 proposals] ( #stage-3-proposals )
170+ - [ ` Iterator ` sequencing] ( #iterator-sequencing )
170171 - [ ` JSON.parse ` source text access] ( #jsonparse-source-text-access )
171172 - [ ` Symbol.metadata ` for decorators metadata proposal] ( #symbolmetadata-for-decorators-metadata-proposal )
172173 - [ Stage 2.7 proposals] ( #stage-27-proposals )
173- - [ ` Iterator ` sequencing] ( #iterator-sequencing )
174174 - [ Joint iteration] ( #joint-iteration )
175175 - [ ` Map ` upsert] ( #map-upsert )
176176 - [ Stage 2 proposals] ( #stage-2-proposals )
@@ -2692,6 +2692,26 @@ core-js/proposals/math-sum
26922692core-js(-pure)/stage/3
26932693```
26942694
2695+ ##### [ ` Iterator ` sequencing] ( https://github.com/tc39/proposal-iterator-sequencing ) [ ⬆] ( #index )
2696+ Module [ ` esnext.iterator.concat ` ] ( https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.iterator.concat.js )
2697+ ``` ts
2698+ class Iterator {
2699+ concat(... items : Array <IterableObject >): Iterator <any >;
2700+ }
2701+ ```
2702+ [ * CommonJS entry points:* ] ( #commonjs-api )
2703+ ```
2704+ core-js/proposals/iterator-sequencing
2705+ core-js(-pure)/actual|full/iterator/concat
2706+ ```
2707+ [ * Example* ] ( https://tinyurl.com/2522xjae ) :
2708+ ``` js
2709+ Iterator .concat ([0 , 1 ].values (), [2 , 3 ], function * () {
2710+ yield 4 ;
2711+ yield 5 ;
2712+ }()).toArray (); // => [0, 1, 2, 3, 4, 5]
2713+ ```
2714+
26952715##### [ ` JSON.parse ` source text access] ( https://github.com/tc39/proposal-json-parse-with-source ) [ ⬆] ( #index )
26962716Modules [ ` esnext.json.is-raw-json ` ] ( https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.json.is-raw-json.js ) , [ ` esnext.json.parse ` ] ( https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.json.parse.js ) , [ ` esnext.json.raw-json ` ] ( https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.json.raw-json.js ) .
26972717``` ts
@@ -2756,26 +2776,6 @@ core-js(-pure)/actual|full/function/metadata
27562776core-js(-pure)/stage/2.7
27572777```
27582778
2759- ##### [ ` Iterator ` sequencing] ( https://github.com/tc39/proposal-iterator-sequencing ) [ ⬆] ( #index )
2760- Module [ ` esnext.iterator.concat ` ] ( https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.iterator.concat.js )
2761- ``` ts
2762- class Iterator {
2763- concat(... items : Array <IterableObject >): Iterator <any >;
2764- }
2765- ```
2766- [ * CommonJS entry points:* ] ( #commonjs-api )
2767- ```
2768- core-js/proposals/iterator-sequencing
2769- core-js(-pure)/full/iterator/concat
2770- ```
2771- [ * Example* ] ( https://tinyurl.com/2522xjae ) :
2772- ``` js
2773- Iterator .concat ([0 , 1 ].values (), [2 , 3 ], function * () {
2774- yield 4 ;
2775- yield 5 ;
2776- }()).toArray (); // => [0, 1, 2, 3, 4, 5]
2777- ```
2778-
27792779##### [ Joint iteration] ( https://github.com/tc39/proposal-joint-iteration ) [ ⬆] ( #index )
27802780Modules [ esnext.iterator.zip] ( https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.iterator.zip.js ) , [ esnext.iterator.zip-keyed] ( https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.iterator.zip-keyed.js )
27812781``` ts
0 commit comments