core-js-compat 3.37.1 → 3.38.1
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 +3 -3
- package/compat.js +2 -1
- package/data.json +179 -27
- package/entries.json +131 -1
- package/external.json +0 -0
- package/helpers.js +17 -13
- package/modules-by-versions.json +4 -0
- package/modules.json +2 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ const {
|
|
|
27
27
|
exclude: [ // optional list / filter of modules to exclude, the signature is similar to `modules` option
|
|
28
28
|
'web.atob',
|
|
29
29
|
],
|
|
30
|
-
version: '3.
|
|
30
|
+
version: '3.38', // used `core-js` version, by default - the latest
|
|
31
31
|
inverse: false, // inverse of the result - shows modules that are NOT required for the target environment
|
|
32
32
|
});
|
|
33
33
|
|
|
@@ -125,9 +125,9 @@ require('core-js-compat/modules'); // => Array<ModuleName>
|
|
|
125
125
|
require('core-js-compat').modules; // => Array<ModuleName>
|
|
126
126
|
|
|
127
127
|
// the subset of modules which available in the passed `core-js` version:
|
|
128
|
-
require('core-js-compat/get-modules-list-for-target-version')('3.
|
|
128
|
+
require('core-js-compat/get-modules-list-for-target-version')('3.38'); // => Array<ModuleName>
|
|
129
129
|
// or
|
|
130
|
-
require('core-js-compat').getModulesListForTargetVersion('3.
|
|
130
|
+
require('core-js-compat').getModulesListForTargetVersion('3.38'); // => Array<ModuleName>
|
|
131
131
|
```
|
|
132
132
|
|
|
133
133
|
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:
|
package/compat.js
CHANGED
|
@@ -19,7 +19,8 @@ function getModules(filter) {
|
|
|
19
19
|
if (typeof filter == 'string') {
|
|
20
20
|
if (has(entries, filter)) return entries[filter];
|
|
21
21
|
return atLeastSomeModules(allModules.filter(it => it.startsWith(filter)), filter);
|
|
22
|
-
}
|
|
22
|
+
}
|
|
23
|
+
if (filter instanceof RegExp) return atLeastSomeModules(allModules.filter(it => filter.test(it)), filter);
|
|
23
24
|
throwInvalidFilter(filter);
|
|
24
25
|
}
|
|
25
26
|
|
package/data.json
CHANGED
|
@@ -389,6 +389,7 @@
|
|
|
389
389
|
"electron": "10.0",
|
|
390
390
|
"firefox": "79",
|
|
391
391
|
"firefox-android": "79",
|
|
392
|
+
"hermes": "0.13",
|
|
392
393
|
"ios": "14.0",
|
|
393
394
|
"node": "15.0",
|
|
394
395
|
"oculus": "12.0",
|
|
@@ -410,6 +411,7 @@
|
|
|
410
411
|
"electron": "15.0",
|
|
411
412
|
"firefox": "91",
|
|
412
413
|
"firefox-android": "91",
|
|
414
|
+
"hermes": "0.13",
|
|
413
415
|
"ios": "15.0",
|
|
414
416
|
"node": "16.11",
|
|
415
417
|
"oculus": "18.0",
|
|
@@ -431,6 +433,7 @@
|
|
|
431
433
|
"electron": "14.0",
|
|
432
434
|
"firefox": "90",
|
|
433
435
|
"firefox-android": "90",
|
|
436
|
+
"hermes": "0.13",
|
|
434
437
|
"ios": "15.4",
|
|
435
438
|
"node": "16.6",
|
|
436
439
|
"oculus": "17.0",
|
|
@@ -711,6 +714,7 @@
|
|
|
711
714
|
"electron": "1.2",
|
|
712
715
|
"firefox": "53",
|
|
713
716
|
"firefox-android": "53",
|
|
717
|
+
"hermes": "0.13",
|
|
714
718
|
"ios": "9.0",
|
|
715
719
|
"node": "6.5",
|
|
716
720
|
"oculus": "3.0",
|
|
@@ -1113,6 +1117,7 @@
|
|
|
1113
1117
|
"electron": "23.0",
|
|
1114
1118
|
"firefox": "115",
|
|
1115
1119
|
"firefox-android": "115",
|
|
1120
|
+
"hermes": "0.13",
|
|
1116
1121
|
"ios": "16.0",
|
|
1117
1122
|
"node": "20.0",
|
|
1118
1123
|
"oculus": "26.0",
|
|
@@ -1154,6 +1159,7 @@
|
|
|
1154
1159
|
"electron": "23.0",
|
|
1155
1160
|
"firefox": "115",
|
|
1156
1161
|
"firefox-android": "115",
|
|
1162
|
+
"hermes": "0.13",
|
|
1157
1163
|
"ios": "16.0",
|
|
1158
1164
|
"node": "20.0",
|
|
1159
1165
|
"oculus": "26.0",
|
|
@@ -1238,6 +1244,7 @@
|
|
|
1238
1244
|
"electron": "23.0",
|
|
1239
1245
|
"firefox": "115",
|
|
1240
1246
|
"firefox-android": "115",
|
|
1247
|
+
"hermes": "0.13",
|
|
1241
1248
|
"ios": "16.0",
|
|
1242
1249
|
"node": "20.0",
|
|
1243
1250
|
"oculus": "26.0",
|
|
@@ -1726,6 +1733,7 @@
|
|
|
1726
1733
|
"electron": "5.0",
|
|
1727
1734
|
"firefox": "64",
|
|
1728
1735
|
"firefox-android": "64",
|
|
1736
|
+
"hermes": "0.13",
|
|
1729
1737
|
"ios": "12.2",
|
|
1730
1738
|
"node": "12.0",
|
|
1731
1739
|
"oculus": "6.0",
|
|
@@ -1770,6 +1778,7 @@
|
|
|
1770
1778
|
"electron": "1.2",
|
|
1771
1779
|
"firefox": "53",
|
|
1772
1780
|
"firefox-android": "53",
|
|
1781
|
+
"hermes": "0.13",
|
|
1773
1782
|
"ios": "10.0",
|
|
1774
1783
|
"node": "6.5",
|
|
1775
1784
|
"oculus": "3.0",
|
|
@@ -1792,12 +1801,14 @@
|
|
|
1792
1801
|
"electron": "27.0",
|
|
1793
1802
|
"firefox": "119",
|
|
1794
1803
|
"firefox-android": "119",
|
|
1804
|
+
"ios": "18.0",
|
|
1795
1805
|
"node": "21.0",
|
|
1796
1806
|
"oculus": "30.0",
|
|
1797
1807
|
"opera": "103",
|
|
1798
1808
|
"opera-android": "78",
|
|
1799
1809
|
"opera_mobile": "78",
|
|
1800
1810
|
"quest": "30.0",
|
|
1811
|
+
"safari": "18.0",
|
|
1801
1812
|
"samsung": "24.0"
|
|
1802
1813
|
},
|
|
1803
1814
|
"es.math.acosh": {
|
|
@@ -2827,12 +2838,14 @@
|
|
|
2827
2838
|
"electron": "27.0",
|
|
2828
2839
|
"firefox": "119",
|
|
2829
2840
|
"firefox-android": "119",
|
|
2841
|
+
"ios": "18.0",
|
|
2830
2842
|
"node": "21.0",
|
|
2831
2843
|
"oculus": "30.0",
|
|
2832
2844
|
"opera": "103",
|
|
2833
2845
|
"opera-android": "78",
|
|
2834
2846
|
"opera_mobile": "78",
|
|
2835
2847
|
"quest": "30.0",
|
|
2848
|
+
"safari": "18.0",
|
|
2836
2849
|
"samsung": "24.0"
|
|
2837
2850
|
},
|
|
2838
2851
|
"es.object.has-own": {
|
|
@@ -3669,6 +3682,7 @@
|
|
|
3669
3682
|
"electron": "3.0",
|
|
3670
3683
|
"firefox": "78",
|
|
3671
3684
|
"firefox-android": "78",
|
|
3685
|
+
"hermes": "0.13",
|
|
3672
3686
|
"ios": "11.3",
|
|
3673
3687
|
"node": "10.0",
|
|
3674
3688
|
"oculus": "5.0",
|
|
@@ -3778,6 +3792,7 @@
|
|
|
3778
3792
|
"electron": "1.2",
|
|
3779
3793
|
"firefox": "53",
|
|
3780
3794
|
"firefox-android": "53",
|
|
3795
|
+
"hermes": "0.13",
|
|
3781
3796
|
"ios": "10.0",
|
|
3782
3797
|
"node": "6.5",
|
|
3783
3798
|
"oculus": "3.0",
|
|
@@ -3800,12 +3815,15 @@
|
|
|
3800
3815
|
"electron": "30.0",
|
|
3801
3816
|
"firefox": "127",
|
|
3802
3817
|
"firefox-android": "127",
|
|
3818
|
+
"ios": "18.0",
|
|
3803
3819
|
"node": "22.0",
|
|
3804
3820
|
"oculus": "33.0",
|
|
3805
3821
|
"opera": "109",
|
|
3806
3822
|
"opera-android": "82",
|
|
3807
3823
|
"opera_mobile": "82",
|
|
3808
|
-
"quest": "33.0"
|
|
3824
|
+
"quest": "33.0",
|
|
3825
|
+
"safari": "18.0",
|
|
3826
|
+
"samsung": "27.0"
|
|
3809
3827
|
},
|
|
3810
3828
|
"es.set.intersection.v2": {
|
|
3811
3829
|
"android": "123",
|
|
@@ -3817,12 +3835,15 @@
|
|
|
3817
3835
|
"electron": "30.0",
|
|
3818
3836
|
"firefox": "127",
|
|
3819
3837
|
"firefox-android": "127",
|
|
3838
|
+
"ios": "18.0",
|
|
3820
3839
|
"node": "22.0",
|
|
3821
3840
|
"oculus": "33.0",
|
|
3822
3841
|
"opera": "109",
|
|
3823
3842
|
"opera-android": "82",
|
|
3824
3843
|
"opera_mobile": "82",
|
|
3825
|
-
"quest": "33.0"
|
|
3844
|
+
"quest": "33.0",
|
|
3845
|
+
"safari": "18.0",
|
|
3846
|
+
"samsung": "27.0"
|
|
3826
3847
|
},
|
|
3827
3848
|
"es.set.is-disjoint-from.v2": {
|
|
3828
3849
|
"android": "123",
|
|
@@ -3834,12 +3855,15 @@
|
|
|
3834
3855
|
"electron": "30.0",
|
|
3835
3856
|
"firefox": "127",
|
|
3836
3857
|
"firefox-android": "127",
|
|
3858
|
+
"ios": "18.0",
|
|
3837
3859
|
"node": "22.0",
|
|
3838
3860
|
"oculus": "33.0",
|
|
3839
3861
|
"opera": "109",
|
|
3840
3862
|
"opera-android": "82",
|
|
3841
3863
|
"opera_mobile": "82",
|
|
3842
|
-
"quest": "33.0"
|
|
3864
|
+
"quest": "33.0",
|
|
3865
|
+
"safari": "18.0",
|
|
3866
|
+
"samsung": "27.0"
|
|
3843
3867
|
},
|
|
3844
3868
|
"es.set.is-subset-of.v2": {
|
|
3845
3869
|
"android": "123",
|
|
@@ -3851,12 +3875,15 @@
|
|
|
3851
3875
|
"electron": "30.0",
|
|
3852
3876
|
"firefox": "127",
|
|
3853
3877
|
"firefox-android": "127",
|
|
3878
|
+
"ios": "18.0",
|
|
3854
3879
|
"node": "22.0",
|
|
3855
3880
|
"oculus": "33.0",
|
|
3856
3881
|
"opera": "109",
|
|
3857
3882
|
"opera-android": "82",
|
|
3858
3883
|
"opera_mobile": "82",
|
|
3859
|
-
"quest": "33.0"
|
|
3884
|
+
"quest": "33.0",
|
|
3885
|
+
"safari": "18.0",
|
|
3886
|
+
"samsung": "27.0"
|
|
3860
3887
|
},
|
|
3861
3888
|
"es.set.is-superset-of.v2": {
|
|
3862
3889
|
"android": "123",
|
|
@@ -3868,12 +3895,15 @@
|
|
|
3868
3895
|
"electron": "30.0",
|
|
3869
3896
|
"firefox": "127",
|
|
3870
3897
|
"firefox-android": "127",
|
|
3898
|
+
"ios": "18.0",
|
|
3871
3899
|
"node": "22.0",
|
|
3872
3900
|
"oculus": "33.0",
|
|
3873
3901
|
"opera": "109",
|
|
3874
3902
|
"opera-android": "82",
|
|
3875
3903
|
"opera_mobile": "82",
|
|
3876
|
-
"quest": "33.0"
|
|
3904
|
+
"quest": "33.0",
|
|
3905
|
+
"safari": "18.0",
|
|
3906
|
+
"samsung": "27.0"
|
|
3877
3907
|
},
|
|
3878
3908
|
"es.set.symmetric-difference.v2": {
|
|
3879
3909
|
"android": "123",
|
|
@@ -3885,12 +3915,15 @@
|
|
|
3885
3915
|
"electron": "30.0",
|
|
3886
3916
|
"firefox": "127",
|
|
3887
3917
|
"firefox-android": "127",
|
|
3918
|
+
"ios": "18.0",
|
|
3888
3919
|
"node": "22.0",
|
|
3889
3920
|
"oculus": "33.0",
|
|
3890
3921
|
"opera": "109",
|
|
3891
3922
|
"opera-android": "82",
|
|
3892
3923
|
"opera_mobile": "82",
|
|
3893
|
-
"quest": "33.0"
|
|
3924
|
+
"quest": "33.0",
|
|
3925
|
+
"safari": "18.0",
|
|
3926
|
+
"samsung": "27.0"
|
|
3894
3927
|
},
|
|
3895
3928
|
"es.set.union.v2": {
|
|
3896
3929
|
"android": "123",
|
|
@@ -3902,12 +3935,15 @@
|
|
|
3902
3935
|
"electron": "30.0",
|
|
3903
3936
|
"firefox": "127",
|
|
3904
3937
|
"firefox-android": "127",
|
|
3938
|
+
"ios": "18.0",
|
|
3905
3939
|
"node": "22.0",
|
|
3906
3940
|
"oculus": "33.0",
|
|
3907
3941
|
"opera": "109",
|
|
3908
3942
|
"opera-android": "82",
|
|
3909
3943
|
"opera_mobile": "82",
|
|
3910
|
-
"quest": "33.0"
|
|
3944
|
+
"quest": "33.0",
|
|
3945
|
+
"safari": "18.0",
|
|
3946
|
+
"samsung": "27.0"
|
|
3911
3947
|
},
|
|
3912
3948
|
"es.string.at-alternative": {
|
|
3913
3949
|
"android": "92",
|
|
@@ -3919,6 +3955,7 @@
|
|
|
3919
3955
|
"electron": "14.0",
|
|
3920
3956
|
"firefox": "90",
|
|
3921
3957
|
"firefox-android": "90",
|
|
3958
|
+
"hermes": "0.13",
|
|
3922
3959
|
"ios": "15.4",
|
|
3923
3960
|
"node": "16.6",
|
|
3924
3961
|
"oculus": "17.0",
|
|
@@ -4212,6 +4249,7 @@
|
|
|
4212
4249
|
"electron": "3.0",
|
|
4213
4250
|
"firefox": "78",
|
|
4214
4251
|
"firefox-android": "78",
|
|
4252
|
+
"hermes": "0.13",
|
|
4215
4253
|
"ios": "14.0",
|
|
4216
4254
|
"node": "10.0",
|
|
4217
4255
|
"oculus": "5.0",
|
|
@@ -4898,6 +4936,7 @@
|
|
|
4898
4936
|
"electron": "14.0",
|
|
4899
4937
|
"firefox": "90",
|
|
4900
4938
|
"firefox-android": "90",
|
|
4939
|
+
"hermes": "0.13",
|
|
4901
4940
|
"ios": "15.4",
|
|
4902
4941
|
"node": "16.6",
|
|
4903
4942
|
"oculus": "17.0",
|
|
@@ -5595,6 +5634,7 @@
|
|
|
5595
5634
|
"electron": "1.2",
|
|
5596
5635
|
"firefox": "53",
|
|
5597
5636
|
"firefox-android": "53",
|
|
5637
|
+
"hermes": "0.13",
|
|
5598
5638
|
"ios": "10.0",
|
|
5599
5639
|
"node": "6.5",
|
|
5600
5640
|
"oculus": "3.0",
|
|
@@ -5617,6 +5657,7 @@
|
|
|
5617
5657
|
"electron": "1.2",
|
|
5618
5658
|
"firefox": "53",
|
|
5619
5659
|
"firefox-android": "53",
|
|
5660
|
+
"hermes": "0.13",
|
|
5620
5661
|
"ios": "10.0",
|
|
5621
5662
|
"node": "6.5",
|
|
5622
5663
|
"oculus": "3.0",
|
|
@@ -5639,6 +5680,7 @@
|
|
|
5639
5680
|
"electron": "10.0",
|
|
5640
5681
|
"firefox": "79",
|
|
5641
5682
|
"firefox-android": "79",
|
|
5683
|
+
"hermes": "0.13",
|
|
5642
5684
|
"ios": "14.0",
|
|
5643
5685
|
"node": "15.0",
|
|
5644
5686
|
"oculus": "12.0",
|
|
@@ -5661,12 +5703,14 @@
|
|
|
5661
5703
|
"electron": "29.0",
|
|
5662
5704
|
"firefox": "115",
|
|
5663
5705
|
"firefox-android": "115",
|
|
5706
|
+
"ios": "18.0",
|
|
5664
5707
|
"node": "22.0",
|
|
5665
5708
|
"oculus": "32.0",
|
|
5666
5709
|
"opera": "107",
|
|
5667
5710
|
"opera-android": "81",
|
|
5668
5711
|
"opera_mobile": "81",
|
|
5669
5712
|
"quest": "32.0",
|
|
5713
|
+
"safari": "18.0",
|
|
5670
5714
|
"samsung": "25.0"
|
|
5671
5715
|
},
|
|
5672
5716
|
"esnext.array.at": {
|
|
@@ -5679,6 +5723,7 @@
|
|
|
5679
5723
|
"electron": "14.0",
|
|
5680
5724
|
"firefox": "90",
|
|
5681
5725
|
"firefox-android": "90",
|
|
5726
|
+
"hermes": "0.13",
|
|
5682
5727
|
"ios": "15.4",
|
|
5683
5728
|
"node": "16.6",
|
|
5684
5729
|
"oculus": "17.0",
|
|
@@ -5754,6 +5799,7 @@
|
|
|
5754
5799
|
"electron": "23.0",
|
|
5755
5800
|
"firefox": "115",
|
|
5756
5801
|
"firefox-android": "115",
|
|
5802
|
+
"hermes": "0.13",
|
|
5757
5803
|
"ios": "16.0",
|
|
5758
5804
|
"node": "20.0",
|
|
5759
5805
|
"oculus": "26.0",
|
|
@@ -5795,6 +5841,7 @@
|
|
|
5795
5841
|
"electron": "23.0",
|
|
5796
5842
|
"firefox": "115",
|
|
5797
5843
|
"firefox-android": "115",
|
|
5844
|
+
"hermes": "0.13",
|
|
5798
5845
|
"ios": "16.0",
|
|
5799
5846
|
"node": "20.0",
|
|
5800
5847
|
"oculus": "26.0",
|
|
@@ -5817,6 +5864,7 @@
|
|
|
5817
5864
|
"electron": "23.0",
|
|
5818
5865
|
"firefox": "115",
|
|
5819
5866
|
"firefox-android": "115",
|
|
5867
|
+
"hermes": "0.13",
|
|
5820
5868
|
"ios": "16.0",
|
|
5821
5869
|
"node": "20.0",
|
|
5822
5870
|
"oculus": "26.0",
|
|
@@ -5909,11 +5957,17 @@
|
|
|
5909
5957
|
"esnext.composite-key": {},
|
|
5910
5958
|
"esnext.composite-symbol": {},
|
|
5911
5959
|
"esnext.data-view.get-float16": {
|
|
5912
|
-
"
|
|
5960
|
+
"bun": "1.1.23",
|
|
5961
|
+
"deno": "1.43",
|
|
5962
|
+
"firefox": "129",
|
|
5963
|
+
"firefox-android": "129"
|
|
5913
5964
|
},
|
|
5914
5965
|
"esnext.data-view.get-uint8-clamped": {},
|
|
5915
5966
|
"esnext.data-view.set-float16": {
|
|
5916
|
-
"
|
|
5967
|
+
"bun": "1.1.23",
|
|
5968
|
+
"deno": "1.43",
|
|
5969
|
+
"firefox": "129",
|
|
5970
|
+
"firefox-android": "129"
|
|
5917
5971
|
},
|
|
5918
5972
|
"esnext.data-view.set-uint8-clamped": {},
|
|
5919
5973
|
"esnext.disposable-stack.constructor": {},
|
|
@@ -5952,6 +6006,8 @@
|
|
|
5952
6006
|
"deno": "1.37",
|
|
5953
6007
|
"edge": "122",
|
|
5954
6008
|
"electron": "29.0",
|
|
6009
|
+
"firefox": "131",
|
|
6010
|
+
"firefox-android": "131",
|
|
5955
6011
|
"node": "22.0",
|
|
5956
6012
|
"oculus": "32.0",
|
|
5957
6013
|
"opera": "108",
|
|
@@ -5969,6 +6025,8 @@
|
|
|
5969
6025
|
"deno": "1.37",
|
|
5970
6026
|
"edge": "122",
|
|
5971
6027
|
"electron": "29.0",
|
|
6028
|
+
"firefox": "131",
|
|
6029
|
+
"firefox-android": "131",
|
|
5972
6030
|
"node": "22.0",
|
|
5973
6031
|
"oculus": "32.0",
|
|
5974
6032
|
"opera": "108",
|
|
@@ -5984,6 +6042,8 @@
|
|
|
5984
6042
|
"deno": "1.37",
|
|
5985
6043
|
"edge": "122",
|
|
5986
6044
|
"electron": "29.0",
|
|
6045
|
+
"firefox": "131",
|
|
6046
|
+
"firefox-android": "131",
|
|
5987
6047
|
"node": "22.0",
|
|
5988
6048
|
"oculus": "32.0",
|
|
5989
6049
|
"opera": "108",
|
|
@@ -5999,6 +6059,8 @@
|
|
|
5999
6059
|
"deno": "1.37",
|
|
6000
6060
|
"edge": "122",
|
|
6001
6061
|
"electron": "29.0",
|
|
6062
|
+
"firefox": "131",
|
|
6063
|
+
"firefox-android": "131",
|
|
6002
6064
|
"node": "22.0",
|
|
6003
6065
|
"oculus": "32.0",
|
|
6004
6066
|
"opera": "108",
|
|
@@ -6014,6 +6076,8 @@
|
|
|
6014
6076
|
"deno": "1.37",
|
|
6015
6077
|
"edge": "122",
|
|
6016
6078
|
"electron": "29.0",
|
|
6079
|
+
"firefox": "131",
|
|
6080
|
+
"firefox-android": "131",
|
|
6017
6081
|
"node": "22.0",
|
|
6018
6082
|
"oculus": "32.0",
|
|
6019
6083
|
"opera": "108",
|
|
@@ -6029,6 +6093,8 @@
|
|
|
6029
6093
|
"deno": "1.37",
|
|
6030
6094
|
"edge": "122",
|
|
6031
6095
|
"electron": "29.0",
|
|
6096
|
+
"firefox": "131",
|
|
6097
|
+
"firefox-android": "131",
|
|
6032
6098
|
"node": "22.0",
|
|
6033
6099
|
"oculus": "32.0",
|
|
6034
6100
|
"opera": "108",
|
|
@@ -6044,6 +6110,8 @@
|
|
|
6044
6110
|
"deno": "1.37",
|
|
6045
6111
|
"edge": "122",
|
|
6046
6112
|
"electron": "29.0",
|
|
6113
|
+
"firefox": "131",
|
|
6114
|
+
"firefox-android": "131",
|
|
6047
6115
|
"node": "22.0",
|
|
6048
6116
|
"oculus": "32.0",
|
|
6049
6117
|
"opera": "108",
|
|
@@ -6059,6 +6127,8 @@
|
|
|
6059
6127
|
"deno": "1.37",
|
|
6060
6128
|
"edge": "122",
|
|
6061
6129
|
"electron": "29.0",
|
|
6130
|
+
"firefox": "131",
|
|
6131
|
+
"firefox-android": "131",
|
|
6062
6132
|
"node": "22.0",
|
|
6063
6133
|
"oculus": "32.0",
|
|
6064
6134
|
"opera": "108",
|
|
@@ -6075,6 +6145,8 @@
|
|
|
6075
6145
|
"deno": "1.37",
|
|
6076
6146
|
"edge": "122",
|
|
6077
6147
|
"electron": "29.0",
|
|
6148
|
+
"firefox": "131",
|
|
6149
|
+
"firefox-android": "131",
|
|
6078
6150
|
"node": "22.0",
|
|
6079
6151
|
"oculus": "32.0",
|
|
6080
6152
|
"opera": "108",
|
|
@@ -6091,6 +6163,8 @@
|
|
|
6091
6163
|
"deno": "1.37",
|
|
6092
6164
|
"edge": "122",
|
|
6093
6165
|
"electron": "29.0",
|
|
6166
|
+
"firefox": "131",
|
|
6167
|
+
"firefox-android": "131",
|
|
6094
6168
|
"node": "22.0",
|
|
6095
6169
|
"oculus": "32.0",
|
|
6096
6170
|
"opera": "108",
|
|
@@ -6106,6 +6180,8 @@
|
|
|
6106
6180
|
"deno": "1.37",
|
|
6107
6181
|
"edge": "122",
|
|
6108
6182
|
"electron": "29.0",
|
|
6183
|
+
"firefox": "131",
|
|
6184
|
+
"firefox-android": "131",
|
|
6109
6185
|
"node": "22.0",
|
|
6110
6186
|
"oculus": "32.0",
|
|
6111
6187
|
"opera": "108",
|
|
@@ -6121,6 +6197,8 @@
|
|
|
6121
6197
|
"deno": "1.37",
|
|
6122
6198
|
"edge": "122",
|
|
6123
6199
|
"electron": "29.0",
|
|
6200
|
+
"firefox": "131",
|
|
6201
|
+
"firefox-android": "131",
|
|
6124
6202
|
"node": "22.0",
|
|
6125
6203
|
"oculus": "32.0",
|
|
6126
6204
|
"opera": "108",
|
|
@@ -6136,6 +6214,8 @@
|
|
|
6136
6214
|
"deno": "1.37",
|
|
6137
6215
|
"edge": "122",
|
|
6138
6216
|
"electron": "29.0",
|
|
6217
|
+
"firefox": "131",
|
|
6218
|
+
"firefox-android": "131",
|
|
6139
6219
|
"node": "22.0",
|
|
6140
6220
|
"oculus": "32.0",
|
|
6141
6221
|
"opera": "108",
|
|
@@ -6207,12 +6287,14 @@
|
|
|
6207
6287
|
"electron": "27.0",
|
|
6208
6288
|
"firefox": "119",
|
|
6209
6289
|
"firefox-android": "119",
|
|
6290
|
+
"ios": "18.0",
|
|
6210
6291
|
"node": "21.0",
|
|
6211
6292
|
"oculus": "30.0",
|
|
6212
6293
|
"opera": "103",
|
|
6213
6294
|
"opera-android": "78",
|
|
6214
6295
|
"opera_mobile": "78",
|
|
6215
6296
|
"quest": "30.0",
|
|
6297
|
+
"safari": "18.0",
|
|
6216
6298
|
"samsung": "24.0"
|
|
6217
6299
|
},
|
|
6218
6300
|
"esnext.map.includes": {},
|
|
@@ -6232,7 +6314,10 @@
|
|
|
6232
6314
|
"esnext.math.degrees": {},
|
|
6233
6315
|
"esnext.math.fscale": {},
|
|
6234
6316
|
"esnext.math.f16round": {
|
|
6235
|
-
"
|
|
6317
|
+
"bun": "1.1.23",
|
|
6318
|
+
"deno": "1.43",
|
|
6319
|
+
"firefox": "129",
|
|
6320
|
+
"firefox-android": "129"
|
|
6236
6321
|
},
|
|
6237
6322
|
"esnext.math.iaddh": {},
|
|
6238
6323
|
"esnext.math.imulh": {},
|
|
@@ -6282,12 +6367,14 @@
|
|
|
6282
6367
|
"electron": "27.0",
|
|
6283
6368
|
"firefox": "119",
|
|
6284
6369
|
"firefox-android": "119",
|
|
6370
|
+
"ios": "18.0",
|
|
6285
6371
|
"node": "21.0",
|
|
6286
6372
|
"oculus": "30.0",
|
|
6287
6373
|
"opera": "103",
|
|
6288
6374
|
"opera-android": "78",
|
|
6289
6375
|
"opera_mobile": "78",
|
|
6290
6376
|
"quest": "30.0",
|
|
6377
|
+
"safari": "18.0",
|
|
6291
6378
|
"samsung": "24.0"
|
|
6292
6379
|
},
|
|
6293
6380
|
"esnext.observable": {},
|
|
@@ -6332,7 +6419,15 @@
|
|
|
6332
6419
|
"safari": "14.0",
|
|
6333
6420
|
"samsung": "14.0"
|
|
6334
6421
|
},
|
|
6335
|
-
"esnext.promise.try": {
|
|
6422
|
+
"esnext.promise.try": {
|
|
6423
|
+
"android": "128",
|
|
6424
|
+
"bun": "1.1.22",
|
|
6425
|
+
"chrome": "128",
|
|
6426
|
+
"chrome-android": "128",
|
|
6427
|
+
"edge": "128",
|
|
6428
|
+
"electron": "32.0",
|
|
6429
|
+
"opera": "114"
|
|
6430
|
+
},
|
|
6336
6431
|
"esnext.promise.with-resolvers": {
|
|
6337
6432
|
"android": "119",
|
|
6338
6433
|
"bun": "0.7.1",
|
|
@@ -6362,7 +6457,9 @@
|
|
|
6362
6457
|
"esnext.reflect.has-metadata": {},
|
|
6363
6458
|
"esnext.reflect.has-own-metadata": {},
|
|
6364
6459
|
"esnext.reflect.metadata": {},
|
|
6365
|
-
"esnext.regexp.escape": {
|
|
6460
|
+
"esnext.regexp.escape": {
|
|
6461
|
+
"bun": "1.1.22"
|
|
6462
|
+
},
|
|
6366
6463
|
"esnext.set.add-all": {},
|
|
6367
6464
|
"esnext.set.delete-all": {},
|
|
6368
6465
|
"esnext.set.difference.v2": {
|
|
@@ -6375,12 +6472,15 @@
|
|
|
6375
6472
|
"electron": "30.0",
|
|
6376
6473
|
"firefox": "127",
|
|
6377
6474
|
"firefox-android": "127",
|
|
6475
|
+
"ios": "18.0",
|
|
6378
6476
|
"node": "22.0",
|
|
6379
6477
|
"oculus": "33.0",
|
|
6380
6478
|
"opera": "109",
|
|
6381
6479
|
"opera-android": "82",
|
|
6382
6480
|
"opera_mobile": "82",
|
|
6383
|
-
"quest": "33.0"
|
|
6481
|
+
"quest": "33.0",
|
|
6482
|
+
"safari": "18.0",
|
|
6483
|
+
"samsung": "27.0"
|
|
6384
6484
|
},
|
|
6385
6485
|
"esnext.set.difference": {},
|
|
6386
6486
|
"esnext.set.every": {},
|
|
@@ -6397,12 +6497,15 @@
|
|
|
6397
6497
|
"electron": "30.0",
|
|
6398
6498
|
"firefox": "127",
|
|
6399
6499
|
"firefox-android": "127",
|
|
6500
|
+
"ios": "18.0",
|
|
6400
6501
|
"node": "22.0",
|
|
6401
6502
|
"oculus": "33.0",
|
|
6402
6503
|
"opera": "109",
|
|
6403
6504
|
"opera-android": "82",
|
|
6404
6505
|
"opera_mobile": "82",
|
|
6405
|
-
"quest": "33.0"
|
|
6506
|
+
"quest": "33.0",
|
|
6507
|
+
"safari": "18.0",
|
|
6508
|
+
"samsung": "27.0"
|
|
6406
6509
|
},
|
|
6407
6510
|
"esnext.set.intersection": {},
|
|
6408
6511
|
"esnext.set.is-disjoint-from.v2": {
|
|
@@ -6415,12 +6518,15 @@
|
|
|
6415
6518
|
"electron": "30.0",
|
|
6416
6519
|
"firefox": "127",
|
|
6417
6520
|
"firefox-android": "127",
|
|
6521
|
+
"ios": "18.0",
|
|
6418
6522
|
"node": "22.0",
|
|
6419
6523
|
"oculus": "33.0",
|
|
6420
6524
|
"opera": "109",
|
|
6421
6525
|
"opera-android": "82",
|
|
6422
6526
|
"opera_mobile": "82",
|
|
6423
|
-
"quest": "33.0"
|
|
6527
|
+
"quest": "33.0",
|
|
6528
|
+
"safari": "18.0",
|
|
6529
|
+
"samsung": "27.0"
|
|
6424
6530
|
},
|
|
6425
6531
|
"esnext.set.is-disjoint-from": {},
|
|
6426
6532
|
"esnext.set.is-subset-of.v2": {
|
|
@@ -6433,12 +6539,15 @@
|
|
|
6433
6539
|
"electron": "30.0",
|
|
6434
6540
|
"firefox": "127",
|
|
6435
6541
|
"firefox-android": "127",
|
|
6542
|
+
"ios": "18.0",
|
|
6436
6543
|
"node": "22.0",
|
|
6437
6544
|
"oculus": "33.0",
|
|
6438
6545
|
"opera": "109",
|
|
6439
6546
|
"opera-android": "82",
|
|
6440
6547
|
"opera_mobile": "82",
|
|
6441
|
-
"quest": "33.0"
|
|
6548
|
+
"quest": "33.0",
|
|
6549
|
+
"safari": "18.0",
|
|
6550
|
+
"samsung": "27.0"
|
|
6442
6551
|
},
|
|
6443
6552
|
"esnext.set.is-subset-of": {},
|
|
6444
6553
|
"esnext.set.is-superset-of.v2": {
|
|
@@ -6451,12 +6560,15 @@
|
|
|
6451
6560
|
"electron": "30.0",
|
|
6452
6561
|
"firefox": "127",
|
|
6453
6562
|
"firefox-android": "127",
|
|
6563
|
+
"ios": "18.0",
|
|
6454
6564
|
"node": "22.0",
|
|
6455
6565
|
"oculus": "33.0",
|
|
6456
6566
|
"opera": "109",
|
|
6457
6567
|
"opera-android": "82",
|
|
6458
6568
|
"opera_mobile": "82",
|
|
6459
|
-
"quest": "33.0"
|
|
6569
|
+
"quest": "33.0",
|
|
6570
|
+
"safari": "18.0",
|
|
6571
|
+
"samsung": "27.0"
|
|
6460
6572
|
},
|
|
6461
6573
|
"esnext.set.is-superset-of": {},
|
|
6462
6574
|
"esnext.set.join": {},
|
|
@@ -6474,12 +6586,15 @@
|
|
|
6474
6586
|
"electron": "30.0",
|
|
6475
6587
|
"firefox": "127",
|
|
6476
6588
|
"firefox-android": "127",
|
|
6589
|
+
"ios": "18.0",
|
|
6477
6590
|
"node": "22.0",
|
|
6478
6591
|
"oculus": "33.0",
|
|
6479
6592
|
"opera": "109",
|
|
6480
6593
|
"opera-android": "82",
|
|
6481
6594
|
"opera_mobile": "82",
|
|
6482
|
-
"quest": "33.0"
|
|
6595
|
+
"quest": "33.0",
|
|
6596
|
+
"safari": "18.0",
|
|
6597
|
+
"samsung": "27.0"
|
|
6483
6598
|
},
|
|
6484
6599
|
"esnext.set.symmetric-difference": {},
|
|
6485
6600
|
"esnext.set.union.v2": {
|
|
@@ -6492,12 +6607,15 @@
|
|
|
6492
6607
|
"electron": "30.0",
|
|
6493
6608
|
"firefox": "127",
|
|
6494
6609
|
"firefox-android": "127",
|
|
6610
|
+
"ios": "18.0",
|
|
6495
6611
|
"node": "22.0",
|
|
6496
6612
|
"oculus": "33.0",
|
|
6497
6613
|
"opera": "109",
|
|
6498
6614
|
"opera-android": "82",
|
|
6499
6615
|
"opera_mobile": "82",
|
|
6500
|
-
"quest": "33.0"
|
|
6616
|
+
"quest": "33.0",
|
|
6617
|
+
"safari": "18.0",
|
|
6618
|
+
"samsung": "27.0"
|
|
6501
6619
|
},
|
|
6502
6620
|
"esnext.set.union": {},
|
|
6503
6621
|
"esnext.string.at": {},
|
|
@@ -6590,9 +6708,17 @@
|
|
|
6590
6708
|
"samsung": "22.0"
|
|
6591
6709
|
},
|
|
6592
6710
|
"esnext.symbol.async-dispose": {
|
|
6711
|
+
"android": "127",
|
|
6593
6712
|
"bun": "1.0.23",
|
|
6713
|
+
"chrome": "127",
|
|
6714
|
+
"chrome-android": "127",
|
|
6594
6715
|
"deno": "1.38",
|
|
6595
|
-
"
|
|
6716
|
+
"edge": "127",
|
|
6717
|
+
"electron": "32.0",
|
|
6718
|
+
"node": "20.5.0",
|
|
6719
|
+
"opera": "113",
|
|
6720
|
+
"opera-android": "84",
|
|
6721
|
+
"opera_mobile": "84"
|
|
6596
6722
|
},
|
|
6597
6723
|
"esnext.symbol.custom-matcher": {},
|
|
6598
6724
|
"esnext.symbol.dispose": {
|
|
@@ -6604,7 +6730,12 @@
|
|
|
6604
6730
|
"edge": "125",
|
|
6605
6731
|
"electron": "31.0",
|
|
6606
6732
|
"node": "20.5.0",
|
|
6607
|
-
"
|
|
6733
|
+
"oculus": "34.0",
|
|
6734
|
+
"opera": "111",
|
|
6735
|
+
"opera-android": "83",
|
|
6736
|
+
"opera_mobile": "83",
|
|
6737
|
+
"quest": "34.0",
|
|
6738
|
+
"samsung": "27.0"
|
|
6608
6739
|
},
|
|
6609
6740
|
"esnext.symbol.is-registered-symbol": {},
|
|
6610
6741
|
"esnext.symbol.is-registered": {},
|
|
@@ -6629,6 +6760,7 @@
|
|
|
6629
6760
|
"electron": "14.0",
|
|
6630
6761
|
"firefox": "90",
|
|
6631
6762
|
"firefox-android": "90",
|
|
6763
|
+
"hermes": "0.13",
|
|
6632
6764
|
"ios": "15.4",
|
|
6633
6765
|
"node": "16.6",
|
|
6634
6766
|
"oculus": "17.0",
|
|
@@ -6750,10 +6882,24 @@
|
|
|
6750
6882
|
"safari": "16.4",
|
|
6751
6883
|
"samsung": "21.0"
|
|
6752
6884
|
},
|
|
6753
|
-
"esnext.uint8-array.from-base64": {
|
|
6754
|
-
|
|
6755
|
-
|
|
6756
|
-
"esnext.uint8-array.
|
|
6885
|
+
"esnext.uint8-array.from-base64": {
|
|
6886
|
+
"bun": "1.1.22"
|
|
6887
|
+
},
|
|
6888
|
+
"esnext.uint8-array.from-hex": {
|
|
6889
|
+
"bun": "1.1.22"
|
|
6890
|
+
},
|
|
6891
|
+
"esnext.uint8-array.set-from-base64": {
|
|
6892
|
+
"bun": "1.1.22"
|
|
6893
|
+
},
|
|
6894
|
+
"esnext.uint8-array.set-from-hex": {
|
|
6895
|
+
"bun": "1.1.22"
|
|
6896
|
+
},
|
|
6897
|
+
"esnext.uint8-array.to-base64": {
|
|
6898
|
+
"bun": "1.1.22"
|
|
6899
|
+
},
|
|
6900
|
+
"esnext.uint8-array.to-hex": {
|
|
6901
|
+
"bun": "1.1.22"
|
|
6902
|
+
},
|
|
6757
6903
|
"esnext.weak-map.delete-all": {},
|
|
6758
6904
|
"esnext.weak-map.from": {},
|
|
6759
6905
|
"esnext.weak-map.of": {},
|
|
@@ -6773,6 +6919,7 @@
|
|
|
6773
6919
|
"electron": "0.20",
|
|
6774
6920
|
"firefox": "27",
|
|
6775
6921
|
"firefox-android": "27",
|
|
6922
|
+
"hermes": "0.13",
|
|
6776
6923
|
"ios": "10.3",
|
|
6777
6924
|
"node": "18.0",
|
|
6778
6925
|
"oculus": "3.0",
|
|
@@ -6926,7 +7073,6 @@
|
|
|
6926
7073
|
"bun": "1.0.22",
|
|
6927
7074
|
"chrome": "86",
|
|
6928
7075
|
"chrome-android": "86",
|
|
6929
|
-
"deno": "1.29.3",
|
|
6930
7076
|
"edge": "86",
|
|
6931
7077
|
"electron": "11.0",
|
|
6932
7078
|
"firefox": "31",
|
|
@@ -7016,8 +7162,14 @@
|
|
|
7016
7162
|
"electron": "31.0",
|
|
7017
7163
|
"firefox": "126",
|
|
7018
7164
|
"firefox-android": "126",
|
|
7165
|
+
"ios": "18.0",
|
|
7019
7166
|
"node": "22.0",
|
|
7020
|
-
"
|
|
7167
|
+
"oculus": "34.0",
|
|
7168
|
+
"opera": "112",
|
|
7169
|
+
"opera-android": "83",
|
|
7170
|
+
"opera_mobile": "83",
|
|
7171
|
+
"quest": "34.0",
|
|
7172
|
+
"safari": "18.0"
|
|
7021
7173
|
},
|
|
7022
7174
|
"web.url.to-json": {
|
|
7023
7175
|
"android": "71",
|
package/entries.json
CHANGED
|
@@ -447,6 +447,8 @@
|
|
|
447
447
|
"esnext.typed-array.with",
|
|
448
448
|
"esnext.uint8-array.from-base64",
|
|
449
449
|
"esnext.uint8-array.from-hex",
|
|
450
|
+
"esnext.uint8-array.set-from-base64",
|
|
451
|
+
"esnext.uint8-array.set-from-hex",
|
|
450
452
|
"esnext.uint8-array.to-base64",
|
|
451
453
|
"esnext.uint8-array.to-hex",
|
|
452
454
|
"esnext.weak-map.delete-all",
|
|
@@ -796,7 +798,9 @@
|
|
|
796
798
|
"esnext.object.group-by",
|
|
797
799
|
"esnext.promise.all-settled",
|
|
798
800
|
"esnext.promise.any",
|
|
801
|
+
"esnext.promise.try",
|
|
799
802
|
"esnext.promise.with-resolvers",
|
|
803
|
+
"esnext.regexp.escape",
|
|
800
804
|
"esnext.set.difference.v2",
|
|
801
805
|
"esnext.set.intersection.v2",
|
|
802
806
|
"esnext.set.is-disjoint-from.v2",
|
|
@@ -820,6 +824,8 @@
|
|
|
820
824
|
"esnext.typed-array.with",
|
|
821
825
|
"esnext.uint8-array.from-base64",
|
|
822
826
|
"esnext.uint8-array.from-hex",
|
|
827
|
+
"esnext.uint8-array.set-from-base64",
|
|
828
|
+
"esnext.uint8-array.set-from-hex",
|
|
823
829
|
"esnext.uint8-array.to-base64",
|
|
824
830
|
"esnext.uint8-array.to-hex",
|
|
825
831
|
"web.atob",
|
|
@@ -2213,6 +2219,7 @@
|
|
|
2213
2219
|
"es.promise.finally",
|
|
2214
2220
|
"es.promise.with-resolvers",
|
|
2215
2221
|
"es.string.iterator",
|
|
2222
|
+
"esnext.promise.try",
|
|
2216
2223
|
"esnext.promise.with-resolvers",
|
|
2217
2224
|
"web.dom-collections.iterator"
|
|
2218
2225
|
],
|
|
@@ -2238,6 +2245,10 @@
|
|
|
2238
2245
|
"es.promise",
|
|
2239
2246
|
"es.promise.finally"
|
|
2240
2247
|
],
|
|
2248
|
+
"core-js/actual/promise/try": [
|
|
2249
|
+
"es.promise",
|
|
2250
|
+
"esnext.promise.try"
|
|
2251
|
+
],
|
|
2241
2252
|
"core-js/actual/promise/with-resolvers": [
|
|
2242
2253
|
"es.promise",
|
|
2243
2254
|
"es.promise.with-resolvers",
|
|
@@ -2316,7 +2327,8 @@
|
|
|
2316
2327
|
"es.string.match",
|
|
2317
2328
|
"es.string.replace",
|
|
2318
2329
|
"es.string.search",
|
|
2319
|
-
"es.string.split"
|
|
2330
|
+
"es.string.split",
|
|
2331
|
+
"esnext.regexp.escape"
|
|
2320
2332
|
],
|
|
2321
2333
|
"core-js/actual/regexp/constructor": [
|
|
2322
2334
|
"es.regexp.constructor",
|
|
@@ -2329,6 +2341,9 @@
|
|
|
2329
2341
|
"es.regexp.dot-all",
|
|
2330
2342
|
"es.regexp.exec"
|
|
2331
2343
|
],
|
|
2344
|
+
"core-js/actual/regexp/escape": [
|
|
2345
|
+
"esnext.regexp.escape"
|
|
2346
|
+
],
|
|
2332
2347
|
"core-js/actual/regexp/flags": [
|
|
2333
2348
|
"es.regexp.flags"
|
|
2334
2349
|
],
|
|
@@ -2907,6 +2922,8 @@
|
|
|
2907
2922
|
"esnext.typed-array.with",
|
|
2908
2923
|
"esnext.uint8-array.from-base64",
|
|
2909
2924
|
"esnext.uint8-array.from-hex",
|
|
2925
|
+
"esnext.uint8-array.set-from-base64",
|
|
2926
|
+
"esnext.uint8-array.set-from-hex",
|
|
2910
2927
|
"esnext.uint8-array.to-base64",
|
|
2911
2928
|
"esnext.uint8-array.to-hex"
|
|
2912
2929
|
],
|
|
@@ -2988,6 +3005,8 @@
|
|
|
2988
3005
|
"esnext.typed-array.with",
|
|
2989
3006
|
"esnext.uint8-array.from-base64",
|
|
2990
3007
|
"esnext.uint8-array.from-hex",
|
|
3008
|
+
"esnext.uint8-array.set-from-base64",
|
|
3009
|
+
"esnext.uint8-array.set-from-hex",
|
|
2991
3010
|
"esnext.uint8-array.to-base64",
|
|
2992
3011
|
"esnext.uint8-array.to-hex"
|
|
2993
3012
|
],
|
|
@@ -3036,6 +3055,8 @@
|
|
|
3036
3055
|
"esnext.typed-array.with",
|
|
3037
3056
|
"esnext.uint8-array.from-base64",
|
|
3038
3057
|
"esnext.uint8-array.from-hex",
|
|
3058
|
+
"esnext.uint8-array.set-from-base64",
|
|
3059
|
+
"esnext.uint8-array.set-from-hex",
|
|
3039
3060
|
"esnext.uint8-array.to-base64",
|
|
3040
3061
|
"esnext.uint8-array.to-hex"
|
|
3041
3062
|
],
|
|
@@ -3102,6 +3123,8 @@
|
|
|
3102
3123
|
"esnext.typed-array.with",
|
|
3103
3124
|
"esnext.uint8-array.from-base64",
|
|
3104
3125
|
"esnext.uint8-array.from-hex",
|
|
3126
|
+
"esnext.uint8-array.set-from-base64",
|
|
3127
|
+
"esnext.uint8-array.set-from-hex",
|
|
3105
3128
|
"esnext.uint8-array.to-base64",
|
|
3106
3129
|
"esnext.uint8-array.to-hex"
|
|
3107
3130
|
],
|
|
@@ -3150,6 +3173,8 @@
|
|
|
3150
3173
|
"esnext.typed-array.with",
|
|
3151
3174
|
"esnext.uint8-array.from-base64",
|
|
3152
3175
|
"esnext.uint8-array.from-hex",
|
|
3176
|
+
"esnext.uint8-array.set-from-base64",
|
|
3177
|
+
"esnext.uint8-array.set-from-hex",
|
|
3153
3178
|
"esnext.uint8-array.to-base64",
|
|
3154
3179
|
"esnext.uint8-array.to-hex"
|
|
3155
3180
|
],
|
|
@@ -3198,6 +3223,8 @@
|
|
|
3198
3223
|
"esnext.typed-array.with",
|
|
3199
3224
|
"esnext.uint8-array.from-base64",
|
|
3200
3225
|
"esnext.uint8-array.from-hex",
|
|
3226
|
+
"esnext.uint8-array.set-from-base64",
|
|
3227
|
+
"esnext.uint8-array.set-from-hex",
|
|
3201
3228
|
"esnext.uint8-array.to-base64",
|
|
3202
3229
|
"esnext.uint8-array.to-hex"
|
|
3203
3230
|
],
|
|
@@ -3260,6 +3287,8 @@
|
|
|
3260
3287
|
"esnext.typed-array.with",
|
|
3261
3288
|
"esnext.uint8-array.from-base64",
|
|
3262
3289
|
"esnext.uint8-array.from-hex",
|
|
3290
|
+
"esnext.uint8-array.set-from-base64",
|
|
3291
|
+
"esnext.uint8-array.set-from-hex",
|
|
3263
3292
|
"esnext.uint8-array.to-base64",
|
|
3264
3293
|
"esnext.uint8-array.to-hex"
|
|
3265
3294
|
],
|
|
@@ -3278,6 +3307,12 @@
|
|
|
3278
3307
|
"core-js/actual/typed-array/set": [
|
|
3279
3308
|
"es.typed-array.set"
|
|
3280
3309
|
],
|
|
3310
|
+
"core-js/actual/typed-array/set-from-base64": [
|
|
3311
|
+
"esnext.uint8-array.set-from-base64"
|
|
3312
|
+
],
|
|
3313
|
+
"core-js/actual/typed-array/set-from-hex": [
|
|
3314
|
+
"esnext.uint8-array.set-from-hex"
|
|
3315
|
+
],
|
|
3281
3316
|
"core-js/actual/typed-array/slice": [
|
|
3282
3317
|
"es.typed-array.slice"
|
|
3283
3318
|
],
|
|
@@ -3359,6 +3394,8 @@
|
|
|
3359
3394
|
"esnext.typed-array.with",
|
|
3360
3395
|
"esnext.uint8-array.from-base64",
|
|
3361
3396
|
"esnext.uint8-array.from-hex",
|
|
3397
|
+
"esnext.uint8-array.set-from-base64",
|
|
3398
|
+
"esnext.uint8-array.set-from-hex",
|
|
3362
3399
|
"esnext.uint8-array.to-base64",
|
|
3363
3400
|
"esnext.uint8-array.to-hex"
|
|
3364
3401
|
],
|
|
@@ -3407,6 +3444,8 @@
|
|
|
3407
3444
|
"esnext.typed-array.with",
|
|
3408
3445
|
"esnext.uint8-array.from-base64",
|
|
3409
3446
|
"esnext.uint8-array.from-hex",
|
|
3447
|
+
"esnext.uint8-array.set-from-base64",
|
|
3448
|
+
"esnext.uint8-array.set-from-hex",
|
|
3410
3449
|
"esnext.uint8-array.to-base64",
|
|
3411
3450
|
"esnext.uint8-array.to-hex"
|
|
3412
3451
|
],
|
|
@@ -3455,6 +3494,8 @@
|
|
|
3455
3494
|
"esnext.typed-array.with",
|
|
3456
3495
|
"esnext.uint8-array.from-base64",
|
|
3457
3496
|
"esnext.uint8-array.from-hex",
|
|
3497
|
+
"esnext.uint8-array.set-from-base64",
|
|
3498
|
+
"esnext.uint8-array.set-from-hex",
|
|
3458
3499
|
"esnext.uint8-array.to-base64",
|
|
3459
3500
|
"esnext.uint8-array.to-hex"
|
|
3460
3501
|
],
|
|
@@ -3503,6 +3544,8 @@
|
|
|
3503
3544
|
"esnext.typed-array.with",
|
|
3504
3545
|
"esnext.uint8-array.from-base64",
|
|
3505
3546
|
"esnext.uint8-array.from-hex",
|
|
3547
|
+
"esnext.uint8-array.set-from-base64",
|
|
3548
|
+
"esnext.uint8-array.set-from-hex",
|
|
3506
3549
|
"esnext.uint8-array.to-base64",
|
|
3507
3550
|
"esnext.uint8-array.to-hex"
|
|
3508
3551
|
],
|
|
@@ -6290,6 +6333,8 @@
|
|
|
6290
6333
|
"esnext.typed-array.with",
|
|
6291
6334
|
"esnext.uint8-array.from-base64",
|
|
6292
6335
|
"esnext.uint8-array.from-hex",
|
|
6336
|
+
"esnext.uint8-array.set-from-base64",
|
|
6337
|
+
"esnext.uint8-array.set-from-hex",
|
|
6293
6338
|
"esnext.uint8-array.to-base64",
|
|
6294
6339
|
"esnext.uint8-array.to-hex",
|
|
6295
6340
|
"esnext.weak-map.delete-all",
|
|
@@ -9044,6 +9089,8 @@
|
|
|
9044
9089
|
"esnext.typed-array.with",
|
|
9045
9090
|
"esnext.uint8-array.from-base64",
|
|
9046
9091
|
"esnext.uint8-array.from-hex",
|
|
9092
|
+
"esnext.uint8-array.set-from-base64",
|
|
9093
|
+
"esnext.uint8-array.set-from-hex",
|
|
9047
9094
|
"esnext.uint8-array.to-base64",
|
|
9048
9095
|
"esnext.uint8-array.to-hex"
|
|
9049
9096
|
],
|
|
@@ -9140,6 +9187,8 @@
|
|
|
9140
9187
|
"esnext.typed-array.with",
|
|
9141
9188
|
"esnext.uint8-array.from-base64",
|
|
9142
9189
|
"esnext.uint8-array.from-hex",
|
|
9190
|
+
"esnext.uint8-array.set-from-base64",
|
|
9191
|
+
"esnext.uint8-array.set-from-hex",
|
|
9143
9192
|
"esnext.uint8-array.to-base64",
|
|
9144
9193
|
"esnext.uint8-array.to-hex"
|
|
9145
9194
|
],
|
|
@@ -9196,6 +9245,8 @@
|
|
|
9196
9245
|
"esnext.typed-array.with",
|
|
9197
9246
|
"esnext.uint8-array.from-base64",
|
|
9198
9247
|
"esnext.uint8-array.from-hex",
|
|
9248
|
+
"esnext.uint8-array.set-from-base64",
|
|
9249
|
+
"esnext.uint8-array.set-from-hex",
|
|
9199
9250
|
"esnext.uint8-array.to-base64",
|
|
9200
9251
|
"esnext.uint8-array.to-hex"
|
|
9201
9252
|
],
|
|
@@ -9276,6 +9327,8 @@
|
|
|
9276
9327
|
"esnext.typed-array.with",
|
|
9277
9328
|
"esnext.uint8-array.from-base64",
|
|
9278
9329
|
"esnext.uint8-array.from-hex",
|
|
9330
|
+
"esnext.uint8-array.set-from-base64",
|
|
9331
|
+
"esnext.uint8-array.set-from-hex",
|
|
9279
9332
|
"esnext.uint8-array.to-base64",
|
|
9280
9333
|
"esnext.uint8-array.to-hex"
|
|
9281
9334
|
],
|
|
@@ -9332,6 +9385,8 @@
|
|
|
9332
9385
|
"esnext.typed-array.with",
|
|
9333
9386
|
"esnext.uint8-array.from-base64",
|
|
9334
9387
|
"esnext.uint8-array.from-hex",
|
|
9388
|
+
"esnext.uint8-array.set-from-base64",
|
|
9389
|
+
"esnext.uint8-array.set-from-hex",
|
|
9335
9390
|
"esnext.uint8-array.to-base64",
|
|
9336
9391
|
"esnext.uint8-array.to-hex"
|
|
9337
9392
|
],
|
|
@@ -9388,6 +9443,8 @@
|
|
|
9388
9443
|
"esnext.typed-array.with",
|
|
9389
9444
|
"esnext.uint8-array.from-base64",
|
|
9390
9445
|
"esnext.uint8-array.from-hex",
|
|
9446
|
+
"esnext.uint8-array.set-from-base64",
|
|
9447
|
+
"esnext.uint8-array.set-from-hex",
|
|
9391
9448
|
"esnext.uint8-array.to-base64",
|
|
9392
9449
|
"esnext.uint8-array.to-hex"
|
|
9393
9450
|
],
|
|
@@ -9458,6 +9515,8 @@
|
|
|
9458
9515
|
"esnext.typed-array.with",
|
|
9459
9516
|
"esnext.uint8-array.from-base64",
|
|
9460
9517
|
"esnext.uint8-array.from-hex",
|
|
9518
|
+
"esnext.uint8-array.set-from-base64",
|
|
9519
|
+
"esnext.uint8-array.set-from-hex",
|
|
9461
9520
|
"esnext.uint8-array.to-base64",
|
|
9462
9521
|
"esnext.uint8-array.to-hex"
|
|
9463
9522
|
],
|
|
@@ -9476,6 +9535,12 @@
|
|
|
9476
9535
|
"core-js/features/typed-array/set": [
|
|
9477
9536
|
"es.typed-array.set"
|
|
9478
9537
|
],
|
|
9538
|
+
"core-js/features/typed-array/set-from-base64": [
|
|
9539
|
+
"esnext.uint8-array.set-from-base64"
|
|
9540
|
+
],
|
|
9541
|
+
"core-js/features/typed-array/set-from-hex": [
|
|
9542
|
+
"esnext.uint8-array.set-from-hex"
|
|
9543
|
+
],
|
|
9479
9544
|
"core-js/features/typed-array/slice": [
|
|
9480
9545
|
"es.typed-array.slice"
|
|
9481
9546
|
],
|
|
@@ -9565,6 +9630,8 @@
|
|
|
9565
9630
|
"esnext.typed-array.with",
|
|
9566
9631
|
"esnext.uint8-array.from-base64",
|
|
9567
9632
|
"esnext.uint8-array.from-hex",
|
|
9633
|
+
"esnext.uint8-array.set-from-base64",
|
|
9634
|
+
"esnext.uint8-array.set-from-hex",
|
|
9568
9635
|
"esnext.uint8-array.to-base64",
|
|
9569
9636
|
"esnext.uint8-array.to-hex"
|
|
9570
9637
|
],
|
|
@@ -9621,6 +9688,8 @@
|
|
|
9621
9688
|
"esnext.typed-array.with",
|
|
9622
9689
|
"esnext.uint8-array.from-base64",
|
|
9623
9690
|
"esnext.uint8-array.from-hex",
|
|
9691
|
+
"esnext.uint8-array.set-from-base64",
|
|
9692
|
+
"esnext.uint8-array.set-from-hex",
|
|
9624
9693
|
"esnext.uint8-array.to-base64",
|
|
9625
9694
|
"esnext.uint8-array.to-hex"
|
|
9626
9695
|
],
|
|
@@ -9677,6 +9746,8 @@
|
|
|
9677
9746
|
"esnext.typed-array.with",
|
|
9678
9747
|
"esnext.uint8-array.from-base64",
|
|
9679
9748
|
"esnext.uint8-array.from-hex",
|
|
9749
|
+
"esnext.uint8-array.set-from-base64",
|
|
9750
|
+
"esnext.uint8-array.set-from-hex",
|
|
9680
9751
|
"esnext.uint8-array.to-base64",
|
|
9681
9752
|
"esnext.uint8-array.to-hex"
|
|
9682
9753
|
],
|
|
@@ -9733,6 +9804,8 @@
|
|
|
9733
9804
|
"esnext.typed-array.with",
|
|
9734
9805
|
"esnext.uint8-array.from-base64",
|
|
9735
9806
|
"esnext.uint8-array.from-hex",
|
|
9807
|
+
"esnext.uint8-array.set-from-base64",
|
|
9808
|
+
"esnext.uint8-array.set-from-hex",
|
|
9736
9809
|
"esnext.uint8-array.to-base64",
|
|
9737
9810
|
"esnext.uint8-array.to-hex"
|
|
9738
9811
|
],
|
|
@@ -10306,6 +10379,8 @@
|
|
|
10306
10379
|
"esnext.typed-array.with",
|
|
10307
10380
|
"esnext.uint8-array.from-base64",
|
|
10308
10381
|
"esnext.uint8-array.from-hex",
|
|
10382
|
+
"esnext.uint8-array.set-from-base64",
|
|
10383
|
+
"esnext.uint8-array.set-from-hex",
|
|
10309
10384
|
"esnext.uint8-array.to-base64",
|
|
10310
10385
|
"esnext.uint8-array.to-hex",
|
|
10311
10386
|
"esnext.weak-map.delete-all",
|
|
@@ -13060,6 +13135,8 @@
|
|
|
13060
13135
|
"esnext.typed-array.with",
|
|
13061
13136
|
"esnext.uint8-array.from-base64",
|
|
13062
13137
|
"esnext.uint8-array.from-hex",
|
|
13138
|
+
"esnext.uint8-array.set-from-base64",
|
|
13139
|
+
"esnext.uint8-array.set-from-hex",
|
|
13063
13140
|
"esnext.uint8-array.to-base64",
|
|
13064
13141
|
"esnext.uint8-array.to-hex"
|
|
13065
13142
|
],
|
|
@@ -13156,6 +13233,8 @@
|
|
|
13156
13233
|
"esnext.typed-array.with",
|
|
13157
13234
|
"esnext.uint8-array.from-base64",
|
|
13158
13235
|
"esnext.uint8-array.from-hex",
|
|
13236
|
+
"esnext.uint8-array.set-from-base64",
|
|
13237
|
+
"esnext.uint8-array.set-from-hex",
|
|
13159
13238
|
"esnext.uint8-array.to-base64",
|
|
13160
13239
|
"esnext.uint8-array.to-hex"
|
|
13161
13240
|
],
|
|
@@ -13212,6 +13291,8 @@
|
|
|
13212
13291
|
"esnext.typed-array.with",
|
|
13213
13292
|
"esnext.uint8-array.from-base64",
|
|
13214
13293
|
"esnext.uint8-array.from-hex",
|
|
13294
|
+
"esnext.uint8-array.set-from-base64",
|
|
13295
|
+
"esnext.uint8-array.set-from-hex",
|
|
13215
13296
|
"esnext.uint8-array.to-base64",
|
|
13216
13297
|
"esnext.uint8-array.to-hex"
|
|
13217
13298
|
],
|
|
@@ -13292,6 +13373,8 @@
|
|
|
13292
13373
|
"esnext.typed-array.with",
|
|
13293
13374
|
"esnext.uint8-array.from-base64",
|
|
13294
13375
|
"esnext.uint8-array.from-hex",
|
|
13376
|
+
"esnext.uint8-array.set-from-base64",
|
|
13377
|
+
"esnext.uint8-array.set-from-hex",
|
|
13295
13378
|
"esnext.uint8-array.to-base64",
|
|
13296
13379
|
"esnext.uint8-array.to-hex"
|
|
13297
13380
|
],
|
|
@@ -13348,6 +13431,8 @@
|
|
|
13348
13431
|
"esnext.typed-array.with",
|
|
13349
13432
|
"esnext.uint8-array.from-base64",
|
|
13350
13433
|
"esnext.uint8-array.from-hex",
|
|
13434
|
+
"esnext.uint8-array.set-from-base64",
|
|
13435
|
+
"esnext.uint8-array.set-from-hex",
|
|
13351
13436
|
"esnext.uint8-array.to-base64",
|
|
13352
13437
|
"esnext.uint8-array.to-hex"
|
|
13353
13438
|
],
|
|
@@ -13404,6 +13489,8 @@
|
|
|
13404
13489
|
"esnext.typed-array.with",
|
|
13405
13490
|
"esnext.uint8-array.from-base64",
|
|
13406
13491
|
"esnext.uint8-array.from-hex",
|
|
13492
|
+
"esnext.uint8-array.set-from-base64",
|
|
13493
|
+
"esnext.uint8-array.set-from-hex",
|
|
13407
13494
|
"esnext.uint8-array.to-base64",
|
|
13408
13495
|
"esnext.uint8-array.to-hex"
|
|
13409
13496
|
],
|
|
@@ -13474,6 +13561,8 @@
|
|
|
13474
13561
|
"esnext.typed-array.with",
|
|
13475
13562
|
"esnext.uint8-array.from-base64",
|
|
13476
13563
|
"esnext.uint8-array.from-hex",
|
|
13564
|
+
"esnext.uint8-array.set-from-base64",
|
|
13565
|
+
"esnext.uint8-array.set-from-hex",
|
|
13477
13566
|
"esnext.uint8-array.to-base64",
|
|
13478
13567
|
"esnext.uint8-array.to-hex"
|
|
13479
13568
|
],
|
|
@@ -13492,6 +13581,12 @@
|
|
|
13492
13581
|
"core-js/full/typed-array/set": [
|
|
13493
13582
|
"es.typed-array.set"
|
|
13494
13583
|
],
|
|
13584
|
+
"core-js/full/typed-array/set-from-base64": [
|
|
13585
|
+
"esnext.uint8-array.set-from-base64"
|
|
13586
|
+
],
|
|
13587
|
+
"core-js/full/typed-array/set-from-hex": [
|
|
13588
|
+
"esnext.uint8-array.set-from-hex"
|
|
13589
|
+
],
|
|
13495
13590
|
"core-js/full/typed-array/slice": [
|
|
13496
13591
|
"es.typed-array.slice"
|
|
13497
13592
|
],
|
|
@@ -13581,6 +13676,8 @@
|
|
|
13581
13676
|
"esnext.typed-array.with",
|
|
13582
13677
|
"esnext.uint8-array.from-base64",
|
|
13583
13678
|
"esnext.uint8-array.from-hex",
|
|
13679
|
+
"esnext.uint8-array.set-from-base64",
|
|
13680
|
+
"esnext.uint8-array.set-from-hex",
|
|
13584
13681
|
"esnext.uint8-array.to-base64",
|
|
13585
13682
|
"esnext.uint8-array.to-hex"
|
|
13586
13683
|
],
|
|
@@ -13637,6 +13734,8 @@
|
|
|
13637
13734
|
"esnext.typed-array.with",
|
|
13638
13735
|
"esnext.uint8-array.from-base64",
|
|
13639
13736
|
"esnext.uint8-array.from-hex",
|
|
13737
|
+
"esnext.uint8-array.set-from-base64",
|
|
13738
|
+
"esnext.uint8-array.set-from-hex",
|
|
13640
13739
|
"esnext.uint8-array.to-base64",
|
|
13641
13740
|
"esnext.uint8-array.to-hex"
|
|
13642
13741
|
],
|
|
@@ -13693,6 +13792,8 @@
|
|
|
13693
13792
|
"esnext.typed-array.with",
|
|
13694
13793
|
"esnext.uint8-array.from-base64",
|
|
13695
13794
|
"esnext.uint8-array.from-hex",
|
|
13795
|
+
"esnext.uint8-array.set-from-base64",
|
|
13796
|
+
"esnext.uint8-array.set-from-hex",
|
|
13696
13797
|
"esnext.uint8-array.to-base64",
|
|
13697
13798
|
"esnext.uint8-array.to-hex"
|
|
13698
13799
|
],
|
|
@@ -13749,6 +13850,8 @@
|
|
|
13749
13850
|
"esnext.typed-array.with",
|
|
13750
13851
|
"esnext.uint8-array.from-base64",
|
|
13751
13852
|
"esnext.uint8-array.from-hex",
|
|
13853
|
+
"esnext.uint8-array.set-from-base64",
|
|
13854
|
+
"esnext.uint8-array.set-from-hex",
|
|
13752
13855
|
"esnext.uint8-array.to-base64",
|
|
13753
13856
|
"esnext.uint8-array.to-hex"
|
|
13754
13857
|
],
|
|
@@ -15281,6 +15384,12 @@
|
|
|
15281
15384
|
"core-js/modules/esnext.uint8-array.from-hex": [
|
|
15282
15385
|
"esnext.uint8-array.from-hex"
|
|
15283
15386
|
],
|
|
15387
|
+
"core-js/modules/esnext.uint8-array.set-from-base64": [
|
|
15388
|
+
"esnext.uint8-array.set-from-base64"
|
|
15389
|
+
],
|
|
15390
|
+
"core-js/modules/esnext.uint8-array.set-from-hex": [
|
|
15391
|
+
"esnext.uint8-array.set-from-hex"
|
|
15392
|
+
],
|
|
15284
15393
|
"core-js/modules/esnext.uint8-array.to-base64": [
|
|
15285
15394
|
"esnext.uint8-array.to-base64"
|
|
15286
15395
|
],
|
|
@@ -15587,6 +15696,8 @@
|
|
|
15587
15696
|
"esnext.typed-array.with",
|
|
15588
15697
|
"esnext.uint8-array.from-base64",
|
|
15589
15698
|
"esnext.uint8-array.from-hex",
|
|
15699
|
+
"esnext.uint8-array.set-from-base64",
|
|
15700
|
+
"esnext.uint8-array.set-from-hex",
|
|
15590
15701
|
"esnext.uint8-array.to-base64",
|
|
15591
15702
|
"esnext.uint8-array.to-hex",
|
|
15592
15703
|
"esnext.weak-map.delete-all",
|
|
@@ -15613,6 +15724,8 @@
|
|
|
15613
15724
|
"core-js/proposals/array-buffer-base64": [
|
|
15614
15725
|
"esnext.uint8-array.from-base64",
|
|
15615
15726
|
"esnext.uint8-array.from-hex",
|
|
15727
|
+
"esnext.uint8-array.set-from-base64",
|
|
15728
|
+
"esnext.uint8-array.set-from-hex",
|
|
15616
15729
|
"esnext.uint8-array.to-base64",
|
|
15617
15730
|
"esnext.uint8-array.to-hex"
|
|
15618
15731
|
],
|
|
@@ -18730,6 +18843,8 @@
|
|
|
18730
18843
|
"esnext.typed-array.with",
|
|
18731
18844
|
"esnext.uint8-array.from-base64",
|
|
18732
18845
|
"esnext.uint8-array.from-hex",
|
|
18846
|
+
"esnext.uint8-array.set-from-base64",
|
|
18847
|
+
"esnext.uint8-array.set-from-hex",
|
|
18733
18848
|
"esnext.uint8-array.to-base64",
|
|
18734
18849
|
"esnext.uint8-array.to-hex",
|
|
18735
18850
|
"esnext.weak-map.delete-all",
|
|
@@ -18936,6 +19051,8 @@
|
|
|
18936
19051
|
"esnext.typed-array.with",
|
|
18937
19052
|
"esnext.uint8-array.from-base64",
|
|
18938
19053
|
"esnext.uint8-array.from-hex",
|
|
19054
|
+
"esnext.uint8-array.set-from-base64",
|
|
19055
|
+
"esnext.uint8-array.set-from-hex",
|
|
18939
19056
|
"esnext.uint8-array.to-base64",
|
|
18940
19057
|
"esnext.uint8-array.to-hex",
|
|
18941
19058
|
"esnext.weak-map.delete-all",
|
|
@@ -19131,6 +19248,8 @@
|
|
|
19131
19248
|
"esnext.typed-array.with",
|
|
19132
19249
|
"esnext.uint8-array.from-base64",
|
|
19133
19250
|
"esnext.uint8-array.from-hex",
|
|
19251
|
+
"esnext.uint8-array.set-from-base64",
|
|
19252
|
+
"esnext.uint8-array.set-from-hex",
|
|
19134
19253
|
"esnext.uint8-array.to-base64",
|
|
19135
19254
|
"esnext.uint8-array.to-hex",
|
|
19136
19255
|
"esnext.weak-map.delete-all",
|
|
@@ -19254,6 +19373,8 @@
|
|
|
19254
19373
|
"esnext.typed-array.with",
|
|
19255
19374
|
"esnext.uint8-array.from-base64",
|
|
19256
19375
|
"esnext.uint8-array.from-hex",
|
|
19376
|
+
"esnext.uint8-array.set-from-base64",
|
|
19377
|
+
"esnext.uint8-array.set-from-hex",
|
|
19257
19378
|
"esnext.uint8-array.to-base64",
|
|
19258
19379
|
"esnext.uint8-array.to-hex",
|
|
19259
19380
|
"esnext.weak-map.emplace"
|
|
@@ -19324,6 +19445,7 @@
|
|
|
19324
19445
|
"esnext.promise.any",
|
|
19325
19446
|
"esnext.promise.try",
|
|
19326
19447
|
"esnext.promise.with-resolvers",
|
|
19448
|
+
"esnext.regexp.escape",
|
|
19327
19449
|
"esnext.set.difference.v2",
|
|
19328
19450
|
"esnext.set.intersection.v2",
|
|
19329
19451
|
"esnext.set.is-disjoint-from.v2",
|
|
@@ -19347,6 +19469,8 @@
|
|
|
19347
19469
|
"esnext.typed-array.with",
|
|
19348
19470
|
"esnext.uint8-array.from-base64",
|
|
19349
19471
|
"esnext.uint8-array.from-hex",
|
|
19472
|
+
"esnext.uint8-array.set-from-base64",
|
|
19473
|
+
"esnext.uint8-array.set-from-hex",
|
|
19350
19474
|
"esnext.uint8-array.to-base64",
|
|
19351
19475
|
"esnext.uint8-array.to-hex"
|
|
19352
19476
|
],
|
|
@@ -19413,7 +19537,9 @@
|
|
|
19413
19537
|
"esnext.object.group-by",
|
|
19414
19538
|
"esnext.promise.all-settled",
|
|
19415
19539
|
"esnext.promise.any",
|
|
19540
|
+
"esnext.promise.try",
|
|
19416
19541
|
"esnext.promise.with-resolvers",
|
|
19542
|
+
"esnext.regexp.escape",
|
|
19417
19543
|
"esnext.set.difference.v2",
|
|
19418
19544
|
"esnext.set.intersection.v2",
|
|
19419
19545
|
"esnext.set.is-disjoint-from.v2",
|
|
@@ -19437,6 +19563,8 @@
|
|
|
19437
19563
|
"esnext.typed-array.with",
|
|
19438
19564
|
"esnext.uint8-array.from-base64",
|
|
19439
19565
|
"esnext.uint8-array.from-hex",
|
|
19566
|
+
"esnext.uint8-array.set-from-base64",
|
|
19567
|
+
"esnext.uint8-array.set-from-hex",
|
|
19440
19568
|
"esnext.uint8-array.to-base64",
|
|
19441
19569
|
"esnext.uint8-array.to-hex"
|
|
19442
19570
|
],
|
|
@@ -19673,6 +19801,8 @@
|
|
|
19673
19801
|
"esnext.typed-array.with",
|
|
19674
19802
|
"esnext.uint8-array.from-base64",
|
|
19675
19803
|
"esnext.uint8-array.from-hex",
|
|
19804
|
+
"esnext.uint8-array.set-from-base64",
|
|
19805
|
+
"esnext.uint8-array.set-from-hex",
|
|
19676
19806
|
"esnext.uint8-array.to-base64",
|
|
19677
19807
|
"esnext.uint8-array.to-hex",
|
|
19678
19808
|
"esnext.weak-map.delete-all",
|
package/external.json
CHANGED
|
File without changes
|
package/helpers.js
CHANGED
|
@@ -2,21 +2,25 @@
|
|
|
2
2
|
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
3
3
|
const has = Object.hasOwn || Function.call.bind({}.hasOwnProperty);
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
5
|
+
const VERSION_PATTERN = /(\d+)(?:\.(\d+))?(?:\.(\d+))?/;
|
|
6
|
+
|
|
7
|
+
class SemVer {
|
|
8
|
+
constructor(input) {
|
|
9
|
+
const match = VERSION_PATTERN.exec(input);
|
|
10
|
+
if (!match) throw new TypeError(`Invalid version: ${ input }`);
|
|
11
|
+
const [, $major, $minor, $patch] = match;
|
|
12
|
+
this.major = +$major;
|
|
13
|
+
this.minor = $minor ? +$minor : 0;
|
|
14
|
+
this.patch = $patch ? +$patch : 0;
|
|
15
|
+
}
|
|
16
|
+
toString() {
|
|
17
|
+
return `${ this.major }.${ this.minor }.${ this.patch }`;
|
|
18
|
+
}
|
|
15
19
|
}
|
|
16
20
|
|
|
17
|
-
|
|
18
|
-
return
|
|
19
|
-
}
|
|
21
|
+
function semver(input) {
|
|
22
|
+
return input instanceof SemVer ? input : new SemVer(input);
|
|
23
|
+
}
|
|
20
24
|
|
|
21
25
|
function compare($a, operator, $b) {
|
|
22
26
|
const a = semver($a);
|
package/modules-by-versions.json
CHANGED
package/modules.json
CHANGED
|
@@ -446,6 +446,8 @@
|
|
|
446
446
|
"esnext.typed-array.with",
|
|
447
447
|
"esnext.uint8-array.from-base64",
|
|
448
448
|
"esnext.uint8-array.from-hex",
|
|
449
|
+
"esnext.uint8-array.set-from-base64",
|
|
450
|
+
"esnext.uint8-array.set-from-hex",
|
|
449
451
|
"esnext.uint8-array.to-base64",
|
|
450
452
|
"esnext.uint8-array.to-hex",
|
|
451
453
|
"esnext.weak-map.delete-all",
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-js-compat",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.38.1",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "core-js compat",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/zloirock/core-js.git",
|
|
8
|
+
"url": "git+https://github.com/zloirock/core-js.git",
|
|
9
9
|
"directory": "packages/core-js-compat"
|
|
10
10
|
},
|
|
11
11
|
"funding": {
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"main": "index.js",
|
|
23
23
|
"types": "index.d.ts",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"browserslist": "^4.23.
|
|
25
|
+
"browserslist": "^4.23.3"
|
|
26
26
|
}
|
|
27
27
|
}
|