core-js-compat 3.25.3 → 3.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  <div align="center">
4
4
 
5
- [![fundraising](https://opencollective.com/core-js/all/badge.svg?label=fundraising)](https://opencollective.com/core-js) [![PRs welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md) [![version](https://img.shields.io/npm/v/core-js-compat.svg)](https://www.npmjs.com/package/core-js-compat) [![core-js-pure downloads](https://img.shields.io/npm/dm/core-js-compat.svg?label=npm%20i%20core-js-compat)](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18) [![tests](https://github.com/zloirock/core-js/workflows/tests/badge.svg)](https://github.com/zloirock/core-js/actions) [![eslint](https://github.com/zloirock/core-js/workflows/eslint/badge.svg)](https://github.com/zloirock/core-js/actions)
5
+ [![fundraising](https://opencollective.com/core-js/all/badge.svg?label=fundraising)](https://opencollective.com/core-js) [![PRs welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md) [![version](https://img.shields.io/npm/v/core-js-compat.svg)](https://www.npmjs.com/package/core-js-compat) [![core-js-pure downloads](https://img.shields.io/npm/dm/core-js-compat.svg?label=npm%20i%20core-js-compat)](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18)
6
6
 
7
7
  </div>
8
8
 
@@ -12,19 +12,20 @@
12
12
  import compat from 'core-js-compat';
13
13
 
14
14
  const {
15
- list, // array of required modules
16
- targets, // object with targets for each module
15
+ list, // array of required modules
16
+ targets, // object with targets for each module
17
17
  } = compat({
18
- targets: '> 1%', // browserslist query or object of minimum environment versions to support, see below
19
- modules: [ // optional list / filter of modules - regex, sting or an array of them:
20
- 'core-js/actual', // - an entry point
21
- 'esnext.array.unique-by', // - a module name (or just a start of a module name)
22
- /^web\./, // - regex that a module name must satisfy
18
+ targets: '> 1%', // browserslist query or object of minimum environment versions to support, see below
19
+ modules: [ // optional list / filter of modules - regex, sting or an array of them:
20
+ 'core-js/actual', // - an entry point
21
+ 'esnext.array.unique-by', // - a module name (or just a start of a module name)
22
+ /^web\./, // - regex that a module name must satisfy
23
23
  ],
24
- exclude: [ // optional list / filter of modules to exclude, the signature is similar to `modules` option
24
+ exclude: [ // optional list / filter of modules to exclude, the signature is similar to `modules` option
25
25
  'web.atob',
26
26
  ],
27
- version: '3.25', // used `core-js` version, by default - the latest
27
+ version: '3.26', // used `core-js` version, by default - the latest
28
+ inverse: false, // inverse of the result - shows modules that are NOT required for the target environment
28
29
  });
29
30
 
30
31
  console.log(targets);
@@ -118,11 +119,11 @@ require('core-js-compat/modules'); // => Array<ModuleName>
118
119
  require('core-js-compat').modules; // => Array<ModuleName>
119
120
 
120
121
  // the subset of modules which available in the passed `core-js` version:
121
- require('core-js-compat/get-modules-list-for-target-version')('3.25'); // => Array<ModuleName>
122
+ require('core-js-compat/get-modules-list-for-target-version')('3.26'); // => Array<ModuleName>
122
123
  // or
123
- require('core-js-compat').getModulesListForTargetVersion('3.25'); // => Array<ModuleName>
124
+ require('core-js-compat').getModulesListForTargetVersion('3.26'); // => Array<ModuleName>
124
125
  ```
125
126
 
126
- If you wanna help to improve this data, you could take a look at the related section of [`CONTRIBUTING.md`](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md#how-to-update-core-js-compat-data). The visualization of compatibility data and the browser tests runner is available [here](http://es6.zloirock.ru/compat/), the example:
127
+ If you wanna help to improve this data, you could take a look at the related section of [`CONTRIBUTING.md`](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md#how-to-update-core-js-compat-data). The visualization of compatibility data and the browser tests runner is available [here](http://zloirock.github.io/core-js/compat/), the example:
127
128
 
128
129
  ![compat-table](https://user-images.githubusercontent.com/2213682/173199354-1f3aeb83-7231-46b2-8a14-a9d47ce3ae45.png)
package/compat.js CHANGED
@@ -54,8 +54,10 @@ module.exports = function ({
54
54
  exclude = [],
55
55
  targets = null,
56
56
  version = null,
57
+ inverse = false,
57
58
  } = {}) {
58
59
  if (modules == null) modules = filter;
60
+ inverse = !!inverse;
59
61
 
60
62
  const parsedTargets = targets ? targetsParser(targets) : null;
61
63
 
@@ -72,12 +74,12 @@ module.exports = function ({
72
74
 
73
75
  modules = intersection(modules, version ? getModulesListForTargetVersion(version) : allModules);
74
76
 
75
- modules = filterOutStabilizedProposals(modules);
77
+ if (!inverse) modules = filterOutStabilizedProposals(modules);
76
78
 
77
79
  for (const key of modules) {
78
80
  const check = checkModule(key, parsedTargets);
79
81
 
80
- if (check.required) {
82
+ if (check.required ^ inverse) {
81
83
  result.list.push(key);
82
84
  result.targets[key] = check.targets;
83
85
  }
package/data.json CHANGED
@@ -4126,12 +4126,24 @@
4126
4126
  "samsung": "18.0"
4127
4127
  },
4128
4128
  "esnext.array.group": {
4129
- "bun": "0.1.9"
4129
+ "android": "108",
4130
+ "bun": "0.1.9",
4131
+ "chrome": "108",
4132
+ "deno": "1.27",
4133
+ "edge": "108",
4134
+ "electron": "22.0",
4135
+ "opera": "94"
4130
4136
  },
4131
4137
  "esnext.array.group-by": {},
4132
4138
  "esnext.array.group-by-to-map": {},
4133
4139
  "esnext.array.group-to-map": {
4134
- "bun": "0.1.9"
4140
+ "android": "108",
4141
+ "bun": "0.1.9",
4142
+ "chrome": "108",
4143
+ "deno": "1.27",
4144
+ "edge": "108",
4145
+ "electron": "22.0",
4146
+ "opera": "94"
4135
4147
  },
4136
4148
  "esnext.array.is-template-object": {},
4137
4149
  "esnext.array.last-index": {},
@@ -4331,6 +4343,7 @@
4331
4343
  "esnext.string.at": {},
4332
4344
  "esnext.string.cooked": {},
4333
4345
  "esnext.string.code-points": {},
4346
+ "esnext.string.is-well-formed": {},
4334
4347
  "esnext.string.match-all": {
4335
4348
  "android": "80",
4336
4349
  "bun": "0.1.1",
@@ -4365,6 +4378,7 @@
4365
4378
  "safari": "13.1",
4366
4379
  "samsung": "14.0"
4367
4380
  },
4381
+ "esnext.string.to-well-formed": {},
4368
4382
  "esnext.symbol.async-dispose": {},
4369
4383
  "esnext.symbol.dispose": {},
4370
4384
  "esnext.symbol.matcher": {},
@@ -4578,6 +4592,19 @@
4578
4592
  "safari": "12.1",
4579
4593
  "samsung": "10.0"
4580
4594
  },
4595
+ "web.self": {
4596
+ "android": "86",
4597
+ "chrome": "86",
4598
+ "edge": "86",
4599
+ "electron": "11.0",
4600
+ "firefox": "31",
4601
+ "ios": "10.0",
4602
+ "oculus": "12.0",
4603
+ "opera": "72",
4604
+ "opera_mobile": "61",
4605
+ "safari": "10",
4606
+ "samsung": "14.0"
4607
+ },
4581
4608
  "web.structured-clone": {},
4582
4609
  "web.timers": {
4583
4610
  "android": "1.5",
package/entries.json CHANGED
@@ -363,8 +363,10 @@
363
363
  "esnext.string.at",
364
364
  "esnext.string.cooked",
365
365
  "esnext.string.code-points",
366
+ "esnext.string.is-well-formed",
366
367
  "esnext.string.match-all",
367
368
  "esnext.string.replace-all",
369
+ "esnext.string.to-well-formed",
368
370
  "esnext.symbol.async-dispose",
369
371
  "esnext.symbol.dispose",
370
372
  "esnext.symbol.matcher",
@@ -403,6 +405,7 @@
403
405
  "web.dom-exception.to-string-tag",
404
406
  "web.immediate",
405
407
  "web.queue-microtask",
408
+ "web.self",
406
409
  "web.structured-clone",
407
410
  "web.timers",
408
411
  "web.url",
@@ -644,6 +647,7 @@
644
647
  "es.weak-map",
645
648
  "es.weak-set",
646
649
  "esnext.aggregate-error",
650
+ "esnext.array.from-async",
647
651
  "esnext.array.at",
648
652
  "esnext.array.find-last",
649
653
  "esnext.array.find-last-index",
@@ -677,6 +681,7 @@
677
681
  "web.dom-exception.to-string-tag",
678
682
  "web.immediate",
679
683
  "web.queue-microtask",
684
+ "web.self",
680
685
  "web.structured-clone",
681
686
  "web.timers",
682
687
  "web.url",
@@ -730,6 +735,7 @@
730
735
  "es.map",
731
736
  "es.object.to-string",
732
737
  "es.string.iterator",
738
+ "esnext.array.from-async",
733
739
  "esnext.array.find-last",
734
740
  "esnext.array.find-last-index",
735
741
  "esnext.array.group",
@@ -809,6 +815,13 @@
809
815
  "es.array.from",
810
816
  "es.string.iterator"
811
817
  ],
818
+ "core-js/actual/array/from-async": [
819
+ "es.array.iterator",
820
+ "es.object.to-string",
821
+ "es.promise",
822
+ "es.string.iterator",
823
+ "esnext.array.from-async"
824
+ ],
812
825
  "core-js/actual/array/group": [
813
826
  "esnext.array.group"
814
827
  ],
@@ -1827,6 +1840,9 @@
1827
1840
  "core-js/actual/regexp/to-string": [
1828
1841
  "es.regexp.to-string"
1829
1842
  ],
1843
+ "core-js/actual/self": [
1844
+ "web.self"
1845
+ ],
1830
1846
  "core-js/actual/set": [
1831
1847
  "es.array.iterator",
1832
1848
  "es.object.to-string",
@@ -5273,8 +5289,10 @@
5273
5289
  "esnext.string.at",
5274
5290
  "esnext.string.cooked",
5275
5291
  "esnext.string.code-points",
5292
+ "esnext.string.is-well-formed",
5276
5293
  "esnext.string.match-all",
5277
5294
  "esnext.string.replace-all",
5295
+ "esnext.string.to-well-formed",
5278
5296
  "esnext.symbol.async-dispose",
5279
5297
  "esnext.symbol.dispose",
5280
5298
  "esnext.symbol.matcher",
@@ -5313,6 +5331,7 @@
5313
5331
  "web.dom-exception.to-string-tag",
5314
5332
  "web.immediate",
5315
5333
  "web.queue-microtask",
5334
+ "web.self",
5316
5335
  "web.structured-clone",
5317
5336
  "web.timers",
5318
5337
  "web.url",
@@ -6131,6 +6150,9 @@
6131
6150
  "core-js/features/instance/index-of": [
6132
6151
  "es.array.index-of"
6133
6152
  ],
6153
+ "core-js/features/instance/is-well-formed": [
6154
+ "esnext.string.is-well-formed"
6155
+ ],
6134
6156
  "core-js/features/instance/keys": [
6135
6157
  "es.array.iterator",
6136
6158
  "es.object.to-string",
@@ -6199,6 +6221,9 @@
6199
6221
  "core-js/features/instance/to-spliced": [
6200
6222
  "esnext.array.to-spliced"
6201
6223
  ],
6224
+ "core-js/features/instance/to-well-formed": [
6225
+ "esnext.string.to-well-formed"
6226
+ ],
6202
6227
  "core-js/features/instance/trim": [
6203
6228
  "es.string.trim"
6204
6229
  ],
@@ -7011,6 +7036,9 @@
7011
7036
  "core-js/features/regexp/to-string": [
7012
7037
  "es.regexp.to-string"
7013
7038
  ],
7039
+ "core-js/features/self": [
7040
+ "web.self"
7041
+ ],
7014
7042
  "core-js/features/set": [
7015
7043
  "es.array.iterator",
7016
7044
  "es.object.to-string",
@@ -7182,8 +7210,10 @@
7182
7210
  "esnext.string.at",
7183
7211
  "esnext.string.cooked",
7184
7212
  "esnext.string.code-points",
7213
+ "esnext.string.is-well-formed",
7185
7214
  "esnext.string.match-all",
7186
- "esnext.string.replace-all"
7215
+ "esnext.string.replace-all",
7216
+ "esnext.string.to-well-formed"
7187
7217
  ],
7188
7218
  "core-js/features/string/anchor": [
7189
7219
  "es.string.anchor"
@@ -7229,6 +7259,9 @@
7229
7259
  "core-js/features/string/includes": [
7230
7260
  "es.string.includes"
7231
7261
  ],
7262
+ "core-js/features/string/is-well-formed": [
7263
+ "esnext.string.is-well-formed"
7264
+ ],
7232
7265
  "core-js/features/string/italics": [
7233
7266
  "es.string.italics"
7234
7267
  ],
@@ -7297,6 +7330,9 @@
7297
7330
  "core-js/features/string/sup": [
7298
7331
  "es.string.sup"
7299
7332
  ],
7333
+ "core-js/features/string/to-well-formed": [
7334
+ "esnext.string.to-well-formed"
7335
+ ],
7300
7336
  "core-js/features/string/trim": [
7301
7337
  "es.string.trim"
7302
7338
  ],
@@ -7349,8 +7385,10 @@
7349
7385
  "es.string.sup",
7350
7386
  "esnext.string.at",
7351
7387
  "esnext.string.code-points",
7388
+ "esnext.string.is-well-formed",
7352
7389
  "esnext.string.match-all",
7353
- "esnext.string.replace-all"
7390
+ "esnext.string.replace-all",
7391
+ "esnext.string.to-well-formed"
7354
7392
  ],
7355
7393
  "core-js/features/string/virtual/anchor": [
7356
7394
  "es.string.anchor"
@@ -7390,6 +7428,9 @@
7390
7428
  "core-js/features/string/virtual/includes": [
7391
7429
  "es.string.includes"
7392
7430
  ],
7431
+ "core-js/features/string/virtual/is-well-formed": [
7432
+ "esnext.string.is-well-formed"
7433
+ ],
7393
7434
  "core-js/features/string/virtual/italics": [
7394
7435
  "es.string.italics"
7395
7436
  ],
@@ -7439,6 +7480,9 @@
7439
7480
  "core-js/features/string/virtual/sup": [
7440
7481
  "es.string.sup"
7441
7482
  ],
7483
+ "core-js/features/string/virtual/to-well-formed": [
7484
+ "esnext.string.to-well-formed"
7485
+ ],
7442
7486
  "core-js/features/string/virtual/trim": [
7443
7487
  "es.string.trim"
7444
7488
  ],
@@ -8708,8 +8752,10 @@
8708
8752
  "esnext.string.at",
8709
8753
  "esnext.string.cooked",
8710
8754
  "esnext.string.code-points",
8755
+ "esnext.string.is-well-formed",
8711
8756
  "esnext.string.match-all",
8712
8757
  "esnext.string.replace-all",
8758
+ "esnext.string.to-well-formed",
8713
8759
  "esnext.symbol.async-dispose",
8714
8760
  "esnext.symbol.dispose",
8715
8761
  "esnext.symbol.matcher",
@@ -8748,6 +8794,7 @@
8748
8794
  "web.dom-exception.to-string-tag",
8749
8795
  "web.immediate",
8750
8796
  "web.queue-microtask",
8797
+ "web.self",
8751
8798
  "web.structured-clone",
8752
8799
  "web.timers",
8753
8800
  "web.url",
@@ -9566,6 +9613,9 @@
9566
9613
  "core-js/full/instance/index-of": [
9567
9614
  "es.array.index-of"
9568
9615
  ],
9616
+ "core-js/full/instance/is-well-formed": [
9617
+ "esnext.string.is-well-formed"
9618
+ ],
9569
9619
  "core-js/full/instance/keys": [
9570
9620
  "es.array.iterator",
9571
9621
  "es.object.to-string",
@@ -9634,6 +9684,9 @@
9634
9684
  "core-js/full/instance/to-spliced": [
9635
9685
  "esnext.array.to-spliced"
9636
9686
  ],
9687
+ "core-js/full/instance/to-well-formed": [
9688
+ "esnext.string.to-well-formed"
9689
+ ],
9637
9690
  "core-js/full/instance/trim": [
9638
9691
  "es.string.trim"
9639
9692
  ],
@@ -10446,6 +10499,9 @@
10446
10499
  "core-js/full/regexp/to-string": [
10447
10500
  "es.regexp.to-string"
10448
10501
  ],
10502
+ "core-js/full/self": [
10503
+ "web.self"
10504
+ ],
10449
10505
  "core-js/full/set": [
10450
10506
  "es.array.iterator",
10451
10507
  "es.object.to-string",
@@ -10617,8 +10673,10 @@
10617
10673
  "esnext.string.at",
10618
10674
  "esnext.string.cooked",
10619
10675
  "esnext.string.code-points",
10676
+ "esnext.string.is-well-formed",
10620
10677
  "esnext.string.match-all",
10621
- "esnext.string.replace-all"
10678
+ "esnext.string.replace-all",
10679
+ "esnext.string.to-well-formed"
10622
10680
  ],
10623
10681
  "core-js/full/string/anchor": [
10624
10682
  "es.string.anchor"
@@ -10664,6 +10722,9 @@
10664
10722
  "core-js/full/string/includes": [
10665
10723
  "es.string.includes"
10666
10724
  ],
10725
+ "core-js/full/string/is-well-formed": [
10726
+ "esnext.string.is-well-formed"
10727
+ ],
10667
10728
  "core-js/full/string/italics": [
10668
10729
  "es.string.italics"
10669
10730
  ],
@@ -10732,6 +10793,9 @@
10732
10793
  "core-js/full/string/sup": [
10733
10794
  "es.string.sup"
10734
10795
  ],
10796
+ "core-js/full/string/to-well-formed": [
10797
+ "esnext.string.to-well-formed"
10798
+ ],
10735
10799
  "core-js/full/string/trim": [
10736
10800
  "es.string.trim"
10737
10801
  ],
@@ -10784,8 +10848,10 @@
10784
10848
  "es.string.sup",
10785
10849
  "esnext.string.at",
10786
10850
  "esnext.string.code-points",
10851
+ "esnext.string.is-well-formed",
10787
10852
  "esnext.string.match-all",
10788
- "esnext.string.replace-all"
10853
+ "esnext.string.replace-all",
10854
+ "esnext.string.to-well-formed"
10789
10855
  ],
10790
10856
  "core-js/full/string/virtual/anchor": [
10791
10857
  "es.string.anchor"
@@ -10825,6 +10891,9 @@
10825
10891
  "core-js/full/string/virtual/includes": [
10826
10892
  "es.string.includes"
10827
10893
  ],
10894
+ "core-js/full/string/virtual/is-well-formed": [
10895
+ "esnext.string.is-well-formed"
10896
+ ],
10828
10897
  "core-js/full/string/virtual/italics": [
10829
10898
  "es.string.italics"
10830
10899
  ],
@@ -10874,6 +10943,9 @@
10874
10943
  "core-js/full/string/virtual/sup": [
10875
10944
  "es.string.sup"
10876
10945
  ],
10946
+ "core-js/full/string/virtual/to-well-formed": [
10947
+ "esnext.string.to-well-formed"
10948
+ ],
10877
10949
  "core-js/full/string/virtual/trim": [
10878
10950
  "es.string.trim"
10879
10951
  ],
@@ -12934,12 +13006,18 @@
12934
13006
  "core-js/modules/esnext.string.cooked": [
12935
13007
  "esnext.string.cooked"
12936
13008
  ],
13009
+ "core-js/modules/esnext.string.is-well-formed": [
13010
+ "esnext.string.is-well-formed"
13011
+ ],
12937
13012
  "core-js/modules/esnext.string.match-all": [
12938
13013
  "esnext.string.match-all"
12939
13014
  ],
12940
13015
  "core-js/modules/esnext.string.replace-all": [
12941
13016
  "esnext.string.replace-all"
12942
13017
  ],
13018
+ "core-js/modules/esnext.string.to-well-formed": [
13019
+ "esnext.string.to-well-formed"
13020
+ ],
12943
13021
  "core-js/modules/esnext.symbol.async-dispose": [
12944
13022
  "esnext.symbol.async-dispose"
12945
13023
  ],
@@ -13057,6 +13135,9 @@
13057
13135
  "core-js/modules/web.queue-microtask": [
13058
13136
  "web.queue-microtask"
13059
13137
  ],
13138
+ "core-js/modules/web.self": [
13139
+ "web.self"
13140
+ ],
13060
13141
  "core-js/modules/web.set-immediate": [
13061
13142
  "web.set-immediate"
13062
13143
  ],
@@ -13220,8 +13301,10 @@
13220
13301
  "esnext.string.at",
13221
13302
  "esnext.string.cooked",
13222
13303
  "esnext.string.code-points",
13304
+ "esnext.string.is-well-formed",
13223
13305
  "esnext.string.match-all",
13224
13306
  "esnext.string.replace-all",
13307
+ "esnext.string.to-well-formed",
13225
13308
  "esnext.symbol.async-dispose",
13226
13309
  "esnext.symbol.dispose",
13227
13310
  "esnext.symbol.matcher",
@@ -13585,6 +13668,10 @@
13585
13668
  "core-js/proposals/well-formed-stringify": [
13586
13669
  "es.json.stringify"
13587
13670
  ],
13671
+ "core-js/proposals/well-formed-unicode-strings": [
13672
+ "esnext.string.is-well-formed",
13673
+ "esnext.string.to-well-formed"
13674
+ ],
13588
13675
  "core-js/stable": [
13589
13676
  "es.symbol",
13590
13677
  "es.symbol.description",
@@ -13828,6 +13915,7 @@
13828
13915
  "web.dom-exception.to-string-tag",
13829
13916
  "web.immediate",
13830
13917
  "web.queue-microtask",
13918
+ "web.self",
13831
13919
  "web.structured-clone",
13832
13920
  "web.timers",
13833
13921
  "web.url",
@@ -14863,6 +14951,9 @@
14863
14951
  "core-js/stable/regexp/to-string": [
14864
14952
  "es.regexp.to-string"
14865
14953
  ],
14954
+ "core-js/stable/self": [
14955
+ "web.self"
14956
+ ],
14866
14957
  "core-js/stable/set": [
14867
14958
  "es.array.iterator",
14868
14959
  "es.object.to-string",
@@ -15915,8 +16006,10 @@
15915
16006
  "esnext.string.at",
15916
16007
  "esnext.string.cooked",
15917
16008
  "esnext.string.code-points",
16009
+ "esnext.string.is-well-formed",
15918
16010
  "esnext.string.match-all",
15919
16011
  "esnext.string.replace-all",
16012
+ "esnext.string.to-well-formed",
15920
16013
  "esnext.symbol.async-dispose",
15921
16014
  "esnext.symbol.dispose",
15922
16015
  "esnext.symbol.matcher",
@@ -16074,8 +16167,10 @@
16074
16167
  "esnext.string.at",
16075
16168
  "esnext.string.cooked",
16076
16169
  "esnext.string.code-points",
16170
+ "esnext.string.is-well-formed",
16077
16171
  "esnext.string.match-all",
16078
16172
  "esnext.string.replace-all",
16173
+ "esnext.string.to-well-formed",
16079
16174
  "esnext.symbol.async-dispose",
16080
16175
  "esnext.symbol.dispose",
16081
16176
  "esnext.symbol.matcher",
@@ -16224,8 +16319,10 @@
16224
16319
  "esnext.set.union",
16225
16320
  "esnext.string.cooked",
16226
16321
  "esnext.string.code-points",
16322
+ "esnext.string.is-well-formed",
16227
16323
  "esnext.string.match-all",
16228
16324
  "esnext.string.replace-all",
16325
+ "esnext.string.to-well-formed",
16229
16326
  "esnext.symbol.async-dispose",
16230
16327
  "esnext.symbol.dispose",
16231
16328
  "esnext.symbol.matcher",
@@ -16314,8 +16411,10 @@
16314
16411
  "esnext.set.is-superset-of",
16315
16412
  "esnext.set.symmetric-difference",
16316
16413
  "esnext.set.union",
16414
+ "esnext.string.is-well-formed",
16317
16415
  "esnext.string.match-all",
16318
16416
  "esnext.string.replace-all",
16417
+ "esnext.string.to-well-formed",
16319
16418
  "esnext.symbol.async-dispose",
16320
16419
  "esnext.symbol.dispose",
16321
16420
  "esnext.symbol.metadata",
@@ -16333,6 +16432,7 @@
16333
16432
  "core-js/stage/3": [
16334
16433
  "es.string.at-alternative",
16335
16434
  "esnext.aggregate-error",
16435
+ "esnext.array.from-async",
16336
16436
  "esnext.array.at",
16337
16437
  "esnext.array.find-last",
16338
16438
  "esnext.array.find-last-index",
@@ -16507,8 +16607,10 @@
16507
16607
  "esnext.string.at",
16508
16608
  "esnext.string.cooked",
16509
16609
  "esnext.string.code-points",
16610
+ "esnext.string.is-well-formed",
16510
16611
  "esnext.string.match-all",
16511
16612
  "esnext.string.replace-all",
16613
+ "esnext.string.to-well-formed",
16512
16614
  "esnext.symbol.async-dispose",
16513
16615
  "esnext.symbol.dispose",
16514
16616
  "esnext.symbol.matcher",
@@ -16552,6 +16654,7 @@
16552
16654
  "web.dom-exception.to-string-tag",
16553
16655
  "web.immediate",
16554
16656
  "web.queue-microtask",
16657
+ "web.self",
16555
16658
  "web.structured-clone",
16556
16659
  "web.timers",
16557
16660
  "web.url",
@@ -448,5 +448,10 @@
448
448
  ],
449
449
  "3.25": [
450
450
  "es.object.proto"
451
+ ],
452
+ "3.26": [
453
+ "esnext.string.is-well-formed",
454
+ "esnext.string.to-well-formed",
455
+ "web.self"
451
456
  ]
452
457
  }
package/modules.json CHANGED
@@ -362,8 +362,10 @@
362
362
  "esnext.string.at",
363
363
  "esnext.string.cooked",
364
364
  "esnext.string.code-points",
365
+ "esnext.string.is-well-formed",
365
366
  "esnext.string.match-all",
366
367
  "esnext.string.replace-all",
368
+ "esnext.string.to-well-formed",
367
369
  "esnext.symbol.async-dispose",
368
370
  "esnext.symbol.dispose",
369
371
  "esnext.symbol.matcher",
@@ -402,6 +404,7 @@
402
404
  "web.dom-exception.to-string-tag",
403
405
  "web.immediate",
404
406
  "web.queue-microtask",
407
+ "web.self",
405
408
  "web.structured-clone",
406
409
  "web.timers",
407
410
  "web.url",
package/package.json CHANGED
@@ -1,20 +1,25 @@
1
1
  {
2
2
  "name": "core-js-compat",
3
+ "version": "3.26.0",
3
4
  "description": "core-js compat",
4
- "version": "3.25.3",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/zloirock/core-js.git",
8
8
  "directory": "packages/core-js-compat"
9
9
  },
10
- "main": "index.js",
11
- "sideEffects": false,
12
- "dependencies": {
13
- "browserslist": "^4.21.4"
14
- },
15
10
  "funding": {
16
11
  "type": "opencollective",
17
12
  "url": "https://opencollective.com/core-js"
18
13
  },
19
- "license": "MIT"
14
+ "license": "MIT",
15
+ "author": {
16
+ "name": "Denis Pushkarev",
17
+ "email": "zloirock@zloirock.ru",
18
+ "url": "http://zloirock.ru"
19
+ },
20
+ "sideEffects": false,
21
+ "main": "index.js",
22
+ "dependencies": {
23
+ "browserslist": "^4.21.4"
24
+ }
20
25
  }