core-js-compat 3.43.0 → 3.45.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 +4 -4
- package/data.json +294 -37
- package/entries.json +699 -28
- package/modules-by-versions.json +12 -0
- package/modules.json +8 -0
- package/package.json +2 -2
package/entries.json
CHANGED
|
@@ -118,6 +118,7 @@
|
|
|
118
118
|
"es.math.log2",
|
|
119
119
|
"es.math.sign",
|
|
120
120
|
"es.math.sinh",
|
|
121
|
+
"es.math.sum-precise",
|
|
121
122
|
"es.math.tanh",
|
|
122
123
|
"es.math.to-string-tag",
|
|
123
124
|
"es.math.trunc",
|
|
@@ -279,6 +280,12 @@
|
|
|
279
280
|
"es.typed-array.to-sorted",
|
|
280
281
|
"es.typed-array.to-string",
|
|
281
282
|
"es.typed-array.with",
|
|
283
|
+
"es.uint8-array.from-base64",
|
|
284
|
+
"es.uint8-array.from-hex",
|
|
285
|
+
"es.uint8-array.set-from-base64",
|
|
286
|
+
"es.uint8-array.set-from-hex",
|
|
287
|
+
"es.uint8-array.to-base64",
|
|
288
|
+
"es.uint8-array.to-hex",
|
|
282
289
|
"es.unescape",
|
|
283
290
|
"es.weak-map",
|
|
284
291
|
"es.weak-set",
|
|
@@ -353,6 +360,7 @@
|
|
|
353
360
|
"esnext.iterator.map",
|
|
354
361
|
"esnext.iterator.range",
|
|
355
362
|
"esnext.iterator.reduce",
|
|
363
|
+
"esnext.iterator.sliding",
|
|
356
364
|
"esnext.iterator.some",
|
|
357
365
|
"esnext.iterator.take",
|
|
358
366
|
"esnext.iterator.to-array",
|
|
@@ -638,6 +646,7 @@
|
|
|
638
646
|
"es.math.log2",
|
|
639
647
|
"es.math.sign",
|
|
640
648
|
"es.math.sinh",
|
|
649
|
+
"es.math.sum-precise",
|
|
641
650
|
"es.math.tanh",
|
|
642
651
|
"es.math.to-string-tag",
|
|
643
652
|
"es.math.trunc",
|
|
@@ -799,6 +808,12 @@
|
|
|
799
808
|
"es.typed-array.to-sorted",
|
|
800
809
|
"es.typed-array.to-string",
|
|
801
810
|
"es.typed-array.with",
|
|
811
|
+
"es.uint8-array.from-base64",
|
|
812
|
+
"es.uint8-array.from-hex",
|
|
813
|
+
"es.uint8-array.set-from-base64",
|
|
814
|
+
"es.uint8-array.set-from-hex",
|
|
815
|
+
"es.uint8-array.to-base64",
|
|
816
|
+
"es.uint8-array.to-hex",
|
|
802
817
|
"es.unescape",
|
|
803
818
|
"es.weak-map",
|
|
804
819
|
"es.weak-set",
|
|
@@ -841,6 +856,7 @@
|
|
|
841
856
|
"esnext.function.metadata",
|
|
842
857
|
"esnext.global-this",
|
|
843
858
|
"esnext.iterator.constructor",
|
|
859
|
+
"esnext.iterator.concat",
|
|
844
860
|
"esnext.iterator.dispose",
|
|
845
861
|
"esnext.iterator.drop",
|
|
846
862
|
"esnext.iterator.every",
|
|
@@ -858,6 +874,8 @@
|
|
|
858
874
|
"esnext.json.is-raw-json",
|
|
859
875
|
"esnext.json.parse",
|
|
860
876
|
"esnext.json.raw-json",
|
|
877
|
+
"esnext.map.get-or-insert",
|
|
878
|
+
"esnext.map.get-or-insert-computed",
|
|
861
879
|
"esnext.map.group-by",
|
|
862
880
|
"esnext.math.f16round",
|
|
863
881
|
"esnext.math.sum-precise",
|
|
@@ -895,6 +913,8 @@
|
|
|
895
913
|
"esnext.uint8-array.set-from-hex",
|
|
896
914
|
"esnext.uint8-array.to-base64",
|
|
897
915
|
"esnext.uint8-array.to-hex",
|
|
916
|
+
"esnext.weak-map.get-or-insert",
|
|
917
|
+
"esnext.weak-map.get-or-insert-computed",
|
|
898
918
|
"web.atob",
|
|
899
919
|
"web.btoa",
|
|
900
920
|
"web.dom-collections.for-each",
|
|
@@ -1891,6 +1911,7 @@
|
|
|
1891
1911
|
"es.promise",
|
|
1892
1912
|
"es.string.iterator",
|
|
1893
1913
|
"esnext.iterator.constructor",
|
|
1914
|
+
"esnext.iterator.concat",
|
|
1894
1915
|
"esnext.iterator.dispose",
|
|
1895
1916
|
"esnext.iterator.drop",
|
|
1896
1917
|
"esnext.iterator.every",
|
|
@@ -1907,6 +1928,25 @@
|
|
|
1907
1928
|
"esnext.iterator.to-async",
|
|
1908
1929
|
"web.dom-collections.iterator"
|
|
1909
1930
|
],
|
|
1931
|
+
"core-js/actual/iterator/concat": [
|
|
1932
|
+
"es.array.iterator",
|
|
1933
|
+
"es.iterator.constructor",
|
|
1934
|
+
"es.iterator.drop",
|
|
1935
|
+
"es.iterator.every",
|
|
1936
|
+
"es.iterator.filter",
|
|
1937
|
+
"es.iterator.find",
|
|
1938
|
+
"es.iterator.flat-map",
|
|
1939
|
+
"es.iterator.for-each",
|
|
1940
|
+
"es.iterator.map",
|
|
1941
|
+
"es.iterator.reduce",
|
|
1942
|
+
"es.iterator.some",
|
|
1943
|
+
"es.iterator.take",
|
|
1944
|
+
"es.iterator.to-array",
|
|
1945
|
+
"es.object.to-string",
|
|
1946
|
+
"es.string.iterator",
|
|
1947
|
+
"esnext.iterator.concat",
|
|
1948
|
+
"web.dom-collections.iterator"
|
|
1949
|
+
],
|
|
1910
1950
|
"core-js/actual/iterator/dispose": [
|
|
1911
1951
|
"esnext.iterator.dispose"
|
|
1912
1952
|
],
|
|
@@ -2067,9 +2107,19 @@
|
|
|
2067
2107
|
"es.map.group-by",
|
|
2068
2108
|
"es.object.to-string",
|
|
2069
2109
|
"es.string.iterator",
|
|
2110
|
+
"esnext.map.get-or-insert",
|
|
2111
|
+
"esnext.map.get-or-insert-computed",
|
|
2070
2112
|
"esnext.map.group-by",
|
|
2071
2113
|
"web.dom-collections.iterator"
|
|
2072
2114
|
],
|
|
2115
|
+
"core-js/actual/map/get-or-insert": [
|
|
2116
|
+
"es.map",
|
|
2117
|
+
"esnext.map.get-or-insert"
|
|
2118
|
+
],
|
|
2119
|
+
"core-js/actual/map/get-or-insert-computed": [
|
|
2120
|
+
"es.map",
|
|
2121
|
+
"esnext.map.get-or-insert-computed"
|
|
2122
|
+
],
|
|
2073
2123
|
"core-js/actual/map/group-by": [
|
|
2074
2124
|
"es.map",
|
|
2075
2125
|
"es.map.group-by",
|
|
@@ -2094,6 +2144,7 @@
|
|
|
2094
2144
|
"es.math.log2",
|
|
2095
2145
|
"es.math.sign",
|
|
2096
2146
|
"es.math.sinh",
|
|
2147
|
+
"es.math.sum-precise",
|
|
2097
2148
|
"es.math.tanh",
|
|
2098
2149
|
"es.math.to-string-tag",
|
|
2099
2150
|
"es.math.trunc",
|
|
@@ -2151,6 +2202,7 @@
|
|
|
2151
2202
|
],
|
|
2152
2203
|
"core-js/actual/math/sum-precise": [
|
|
2153
2204
|
"es.array.iterator",
|
|
2205
|
+
"es.math.sum-precise",
|
|
2154
2206
|
"esnext.math.sum-precise"
|
|
2155
2207
|
],
|
|
2156
2208
|
"core-js/actual/math/tanh": [
|
|
@@ -3080,6 +3132,12 @@
|
|
|
3080
3132
|
"es.typed-array.to-sorted",
|
|
3081
3133
|
"es.typed-array.to-string",
|
|
3082
3134
|
"es.typed-array.with",
|
|
3135
|
+
"es.uint8-array.from-base64",
|
|
3136
|
+
"es.uint8-array.from-hex",
|
|
3137
|
+
"es.uint8-array.set-from-base64",
|
|
3138
|
+
"es.uint8-array.set-from-hex",
|
|
3139
|
+
"es.uint8-array.to-base64",
|
|
3140
|
+
"es.uint8-array.to-hex",
|
|
3083
3141
|
"esnext.typed-array.find-last",
|
|
3084
3142
|
"esnext.typed-array.find-last-index",
|
|
3085
3143
|
"esnext.typed-array.to-reversed",
|
|
@@ -3163,6 +3221,12 @@
|
|
|
3163
3221
|
"es.typed-array.to-sorted",
|
|
3164
3222
|
"es.typed-array.to-string",
|
|
3165
3223
|
"es.typed-array.with",
|
|
3224
|
+
"es.uint8-array.from-base64",
|
|
3225
|
+
"es.uint8-array.from-hex",
|
|
3226
|
+
"es.uint8-array.set-from-base64",
|
|
3227
|
+
"es.uint8-array.set-from-hex",
|
|
3228
|
+
"es.uint8-array.to-base64",
|
|
3229
|
+
"es.uint8-array.to-hex",
|
|
3166
3230
|
"esnext.typed-array.find-last",
|
|
3167
3231
|
"esnext.typed-array.find-last-index",
|
|
3168
3232
|
"esnext.typed-array.to-reversed",
|
|
@@ -3213,6 +3277,12 @@
|
|
|
3213
3277
|
"es.typed-array.to-sorted",
|
|
3214
3278
|
"es.typed-array.to-string",
|
|
3215
3279
|
"es.typed-array.with",
|
|
3280
|
+
"es.uint8-array.from-base64",
|
|
3281
|
+
"es.uint8-array.from-hex",
|
|
3282
|
+
"es.uint8-array.set-from-base64",
|
|
3283
|
+
"es.uint8-array.set-from-hex",
|
|
3284
|
+
"es.uint8-array.to-base64",
|
|
3285
|
+
"es.uint8-array.to-hex",
|
|
3216
3286
|
"esnext.typed-array.find-last",
|
|
3217
3287
|
"esnext.typed-array.find-last-index",
|
|
3218
3288
|
"esnext.typed-array.to-reversed",
|
|
@@ -3233,9 +3303,11 @@
|
|
|
3233
3303
|
"es.typed-array.from"
|
|
3234
3304
|
],
|
|
3235
3305
|
"core-js/actual/typed-array/from-base64": [
|
|
3306
|
+
"es.uint8-array.from-base64",
|
|
3236
3307
|
"esnext.uint8-array.from-base64"
|
|
3237
3308
|
],
|
|
3238
3309
|
"core-js/actual/typed-array/from-hex": [
|
|
3310
|
+
"es.uint8-array.from-hex",
|
|
3239
3311
|
"esnext.uint8-array.from-hex"
|
|
3240
3312
|
],
|
|
3241
3313
|
"core-js/actual/typed-array/includes": [
|
|
@@ -3281,6 +3353,12 @@
|
|
|
3281
3353
|
"es.typed-array.to-sorted",
|
|
3282
3354
|
"es.typed-array.to-string",
|
|
3283
3355
|
"es.typed-array.with",
|
|
3356
|
+
"es.uint8-array.from-base64",
|
|
3357
|
+
"es.uint8-array.from-hex",
|
|
3358
|
+
"es.uint8-array.set-from-base64",
|
|
3359
|
+
"es.uint8-array.set-from-hex",
|
|
3360
|
+
"es.uint8-array.to-base64",
|
|
3361
|
+
"es.uint8-array.to-hex",
|
|
3284
3362
|
"esnext.typed-array.find-last",
|
|
3285
3363
|
"esnext.typed-array.find-last-index",
|
|
3286
3364
|
"esnext.typed-array.to-reversed",
|
|
@@ -3331,6 +3409,12 @@
|
|
|
3331
3409
|
"es.typed-array.to-sorted",
|
|
3332
3410
|
"es.typed-array.to-string",
|
|
3333
3411
|
"es.typed-array.with",
|
|
3412
|
+
"es.uint8-array.from-base64",
|
|
3413
|
+
"es.uint8-array.from-hex",
|
|
3414
|
+
"es.uint8-array.set-from-base64",
|
|
3415
|
+
"es.uint8-array.set-from-hex",
|
|
3416
|
+
"es.uint8-array.to-base64",
|
|
3417
|
+
"es.uint8-array.to-hex",
|
|
3334
3418
|
"esnext.typed-array.find-last",
|
|
3335
3419
|
"esnext.typed-array.find-last-index",
|
|
3336
3420
|
"esnext.typed-array.to-reversed",
|
|
@@ -3381,6 +3465,12 @@
|
|
|
3381
3465
|
"es.typed-array.to-sorted",
|
|
3382
3466
|
"es.typed-array.to-string",
|
|
3383
3467
|
"es.typed-array.with",
|
|
3468
|
+
"es.uint8-array.from-base64",
|
|
3469
|
+
"es.uint8-array.from-hex",
|
|
3470
|
+
"es.uint8-array.set-from-base64",
|
|
3471
|
+
"es.uint8-array.set-from-hex",
|
|
3472
|
+
"es.uint8-array.to-base64",
|
|
3473
|
+
"es.uint8-array.to-hex",
|
|
3384
3474
|
"esnext.typed-array.find-last",
|
|
3385
3475
|
"esnext.typed-array.find-last-index",
|
|
3386
3476
|
"esnext.typed-array.to-reversed",
|
|
@@ -3445,6 +3535,12 @@
|
|
|
3445
3535
|
"es.typed-array.to-sorted",
|
|
3446
3536
|
"es.typed-array.to-string",
|
|
3447
3537
|
"es.typed-array.with",
|
|
3538
|
+
"es.uint8-array.from-base64",
|
|
3539
|
+
"es.uint8-array.from-hex",
|
|
3540
|
+
"es.uint8-array.set-from-base64",
|
|
3541
|
+
"es.uint8-array.set-from-hex",
|
|
3542
|
+
"es.uint8-array.to-base64",
|
|
3543
|
+
"es.uint8-array.to-hex",
|
|
3448
3544
|
"esnext.typed-array.find-last",
|
|
3449
3545
|
"esnext.typed-array.find-last-index",
|
|
3450
3546
|
"esnext.typed-array.to-reversed",
|
|
@@ -3474,9 +3570,11 @@
|
|
|
3474
3570
|
"es.typed-array.set"
|
|
3475
3571
|
],
|
|
3476
3572
|
"core-js/actual/typed-array/set-from-base64": [
|
|
3573
|
+
"es.uint8-array.set-from-base64",
|
|
3477
3574
|
"esnext.uint8-array.set-from-base64"
|
|
3478
3575
|
],
|
|
3479
3576
|
"core-js/actual/typed-array/set-from-hex": [
|
|
3577
|
+
"es.uint8-array.set-from-hex",
|
|
3480
3578
|
"esnext.uint8-array.set-from-hex"
|
|
3481
3579
|
],
|
|
3482
3580
|
"core-js/actual/typed-array/slice": [
|
|
@@ -3492,9 +3590,11 @@
|
|
|
3492
3590
|
"es.typed-array.subarray"
|
|
3493
3591
|
],
|
|
3494
3592
|
"core-js/actual/typed-array/to-base64": [
|
|
3593
|
+
"es.uint8-array.to-base64",
|
|
3495
3594
|
"esnext.uint8-array.to-base64"
|
|
3496
3595
|
],
|
|
3497
3596
|
"core-js/actual/typed-array/to-hex": [
|
|
3597
|
+
"es.uint8-array.to-hex",
|
|
3498
3598
|
"esnext.uint8-array.to-hex"
|
|
3499
3599
|
],
|
|
3500
3600
|
"core-js/actual/typed-array/to-locale-string": [
|
|
@@ -3552,6 +3652,12 @@
|
|
|
3552
3652
|
"es.typed-array.to-sorted",
|
|
3553
3653
|
"es.typed-array.to-string",
|
|
3554
3654
|
"es.typed-array.with",
|
|
3655
|
+
"es.uint8-array.from-base64",
|
|
3656
|
+
"es.uint8-array.from-hex",
|
|
3657
|
+
"es.uint8-array.set-from-base64",
|
|
3658
|
+
"es.uint8-array.set-from-hex",
|
|
3659
|
+
"es.uint8-array.to-base64",
|
|
3660
|
+
"es.uint8-array.to-hex",
|
|
3555
3661
|
"esnext.typed-array.find-last",
|
|
3556
3662
|
"esnext.typed-array.find-last-index",
|
|
3557
3663
|
"esnext.typed-array.to-reversed",
|
|
@@ -3602,6 +3708,12 @@
|
|
|
3602
3708
|
"es.typed-array.to-sorted",
|
|
3603
3709
|
"es.typed-array.to-string",
|
|
3604
3710
|
"es.typed-array.with",
|
|
3711
|
+
"es.uint8-array.from-base64",
|
|
3712
|
+
"es.uint8-array.from-hex",
|
|
3713
|
+
"es.uint8-array.set-from-base64",
|
|
3714
|
+
"es.uint8-array.set-from-hex",
|
|
3715
|
+
"es.uint8-array.to-base64",
|
|
3716
|
+
"es.uint8-array.to-hex",
|
|
3605
3717
|
"esnext.typed-array.find-last",
|
|
3606
3718
|
"esnext.typed-array.find-last-index",
|
|
3607
3719
|
"esnext.typed-array.to-reversed",
|
|
@@ -3652,6 +3764,12 @@
|
|
|
3652
3764
|
"es.typed-array.to-sorted",
|
|
3653
3765
|
"es.typed-array.to-string",
|
|
3654
3766
|
"es.typed-array.with",
|
|
3767
|
+
"es.uint8-array.from-base64",
|
|
3768
|
+
"es.uint8-array.from-hex",
|
|
3769
|
+
"es.uint8-array.set-from-base64",
|
|
3770
|
+
"es.uint8-array.set-from-hex",
|
|
3771
|
+
"es.uint8-array.to-base64",
|
|
3772
|
+
"es.uint8-array.to-hex",
|
|
3655
3773
|
"esnext.typed-array.find-last",
|
|
3656
3774
|
"esnext.typed-array.find-last-index",
|
|
3657
3775
|
"esnext.typed-array.to-reversed",
|
|
@@ -3702,6 +3820,12 @@
|
|
|
3702
3820
|
"es.typed-array.to-sorted",
|
|
3703
3821
|
"es.typed-array.to-string",
|
|
3704
3822
|
"es.typed-array.with",
|
|
3823
|
+
"es.uint8-array.from-base64",
|
|
3824
|
+
"es.uint8-array.from-hex",
|
|
3825
|
+
"es.uint8-array.set-from-base64",
|
|
3826
|
+
"es.uint8-array.set-from-hex",
|
|
3827
|
+
"es.uint8-array.to-base64",
|
|
3828
|
+
"es.uint8-array.to-hex",
|
|
3705
3829
|
"esnext.typed-array.find-last",
|
|
3706
3830
|
"esnext.typed-array.find-last-index",
|
|
3707
3831
|
"esnext.typed-array.to-reversed",
|
|
@@ -3758,8 +3882,18 @@
|
|
|
3758
3882
|
"es.array.iterator",
|
|
3759
3883
|
"es.object.to-string",
|
|
3760
3884
|
"es.weak-map",
|
|
3885
|
+
"esnext.weak-map.get-or-insert",
|
|
3886
|
+
"esnext.weak-map.get-or-insert-computed",
|
|
3761
3887
|
"web.dom-collections.iterator"
|
|
3762
3888
|
],
|
|
3889
|
+
"core-js/actual/weak-map/get-or-insert": [
|
|
3890
|
+
"es.weak-map",
|
|
3891
|
+
"esnext.weak-map.get-or-insert"
|
|
3892
|
+
],
|
|
3893
|
+
"core-js/actual/weak-map/get-or-insert-computed": [
|
|
3894
|
+
"es.weak-map",
|
|
3895
|
+
"esnext.weak-map.get-or-insert-computed"
|
|
3896
|
+
],
|
|
3763
3897
|
"core-js/actual/weak-set": [
|
|
3764
3898
|
"es.array.iterator",
|
|
3765
3899
|
"es.object.to-string",
|
|
@@ -3885,6 +4019,7 @@
|
|
|
3885
4019
|
"es.math.log2",
|
|
3886
4020
|
"es.math.sign",
|
|
3887
4021
|
"es.math.sinh",
|
|
4022
|
+
"es.math.sum-precise",
|
|
3888
4023
|
"es.math.tanh",
|
|
3889
4024
|
"es.math.to-string-tag",
|
|
3890
4025
|
"es.math.trunc",
|
|
@@ -4046,6 +4181,12 @@
|
|
|
4046
4181
|
"es.typed-array.to-sorted",
|
|
4047
4182
|
"es.typed-array.to-string",
|
|
4048
4183
|
"es.typed-array.with",
|
|
4184
|
+
"es.uint8-array.from-base64",
|
|
4185
|
+
"es.uint8-array.from-hex",
|
|
4186
|
+
"es.uint8-array.set-from-base64",
|
|
4187
|
+
"es.uint8-array.set-from-hex",
|
|
4188
|
+
"es.uint8-array.to-base64",
|
|
4189
|
+
"es.uint8-array.to-hex",
|
|
4049
4190
|
"es.unescape",
|
|
4050
4191
|
"es.weak-map",
|
|
4051
4192
|
"es.weak-set"
|
|
@@ -4846,6 +4987,7 @@
|
|
|
4846
4987
|
"es.object.to-string"
|
|
4847
4988
|
],
|
|
4848
4989
|
"core-js/es/math": [
|
|
4990
|
+
"es.array.iterator",
|
|
4849
4991
|
"es.math.acosh",
|
|
4850
4992
|
"es.math.asinh",
|
|
4851
4993
|
"es.math.atanh",
|
|
@@ -4862,6 +5004,7 @@
|
|
|
4862
5004
|
"es.math.log2",
|
|
4863
5005
|
"es.math.sign",
|
|
4864
5006
|
"es.math.sinh",
|
|
5007
|
+
"es.math.sum-precise",
|
|
4865
5008
|
"es.math.tanh",
|
|
4866
5009
|
"es.math.to-string-tag",
|
|
4867
5010
|
"es.math.trunc"
|
|
@@ -4914,6 +5057,10 @@
|
|
|
4914
5057
|
"core-js/es/math/sinh": [
|
|
4915
5058
|
"es.math.sinh"
|
|
4916
5059
|
],
|
|
5060
|
+
"core-js/es/math/sum-precise": [
|
|
5061
|
+
"es.array.iterator",
|
|
5062
|
+
"es.math.sum-precise"
|
|
5063
|
+
],
|
|
4917
5064
|
"core-js/es/math/tanh": [
|
|
4918
5065
|
"es.math.tanh"
|
|
4919
5066
|
],
|
|
@@ -5766,7 +5913,13 @@
|
|
|
5766
5913
|
"es.typed-array.to-reversed",
|
|
5767
5914
|
"es.typed-array.to-sorted",
|
|
5768
5915
|
"es.typed-array.to-string",
|
|
5769
|
-
"es.typed-array.with"
|
|
5916
|
+
"es.typed-array.with",
|
|
5917
|
+
"es.uint8-array.from-base64",
|
|
5918
|
+
"es.uint8-array.from-hex",
|
|
5919
|
+
"es.uint8-array.set-from-base64",
|
|
5920
|
+
"es.uint8-array.set-from-hex",
|
|
5921
|
+
"es.uint8-array.to-base64",
|
|
5922
|
+
"es.uint8-array.to-hex"
|
|
5770
5923
|
],
|
|
5771
5924
|
"core-js/es/typed-array/at": [
|
|
5772
5925
|
"es.typed-array.at"
|
|
@@ -5835,7 +5988,13 @@
|
|
|
5835
5988
|
"es.typed-array.to-reversed",
|
|
5836
5989
|
"es.typed-array.to-sorted",
|
|
5837
5990
|
"es.typed-array.to-string",
|
|
5838
|
-
"es.typed-array.with"
|
|
5991
|
+
"es.typed-array.with",
|
|
5992
|
+
"es.uint8-array.from-base64",
|
|
5993
|
+
"es.uint8-array.from-hex",
|
|
5994
|
+
"es.uint8-array.set-from-base64",
|
|
5995
|
+
"es.uint8-array.set-from-hex",
|
|
5996
|
+
"es.uint8-array.to-base64",
|
|
5997
|
+
"es.uint8-array.to-hex"
|
|
5839
5998
|
],
|
|
5840
5999
|
"core-js/es/typed-array/float64-array": [
|
|
5841
6000
|
"es.array-buffer.constructor",
|
|
@@ -5873,7 +6032,13 @@
|
|
|
5873
6032
|
"es.typed-array.to-reversed",
|
|
5874
6033
|
"es.typed-array.to-sorted",
|
|
5875
6034
|
"es.typed-array.to-string",
|
|
5876
|
-
"es.typed-array.with"
|
|
6035
|
+
"es.typed-array.with",
|
|
6036
|
+
"es.uint8-array.from-base64",
|
|
6037
|
+
"es.uint8-array.from-hex",
|
|
6038
|
+
"es.uint8-array.set-from-base64",
|
|
6039
|
+
"es.uint8-array.set-from-hex",
|
|
6040
|
+
"es.uint8-array.to-base64",
|
|
6041
|
+
"es.uint8-array.to-hex"
|
|
5877
6042
|
],
|
|
5878
6043
|
"core-js/es/typed-array/for-each": [
|
|
5879
6044
|
"es.typed-array.for-each"
|
|
@@ -5881,6 +6046,12 @@
|
|
|
5881
6046
|
"core-js/es/typed-array/from": [
|
|
5882
6047
|
"es.typed-array.from"
|
|
5883
6048
|
],
|
|
6049
|
+
"core-js/es/typed-array/from-base64": [
|
|
6050
|
+
"es.uint8-array.from-base64"
|
|
6051
|
+
],
|
|
6052
|
+
"core-js/es/typed-array/from-hex": [
|
|
6053
|
+
"es.uint8-array.from-hex"
|
|
6054
|
+
],
|
|
5884
6055
|
"core-js/es/typed-array/includes": [
|
|
5885
6056
|
"es.typed-array.includes"
|
|
5886
6057
|
],
|
|
@@ -5923,7 +6094,13 @@
|
|
|
5923
6094
|
"es.typed-array.to-reversed",
|
|
5924
6095
|
"es.typed-array.to-sorted",
|
|
5925
6096
|
"es.typed-array.to-string",
|
|
5926
|
-
"es.typed-array.with"
|
|
6097
|
+
"es.typed-array.with",
|
|
6098
|
+
"es.uint8-array.from-base64",
|
|
6099
|
+
"es.uint8-array.from-hex",
|
|
6100
|
+
"es.uint8-array.set-from-base64",
|
|
6101
|
+
"es.uint8-array.set-from-hex",
|
|
6102
|
+
"es.uint8-array.to-base64",
|
|
6103
|
+
"es.uint8-array.to-hex"
|
|
5927
6104
|
],
|
|
5928
6105
|
"core-js/es/typed-array/int32-array": [
|
|
5929
6106
|
"es.array-buffer.constructor",
|
|
@@ -5961,7 +6138,13 @@
|
|
|
5961
6138
|
"es.typed-array.to-reversed",
|
|
5962
6139
|
"es.typed-array.to-sorted",
|
|
5963
6140
|
"es.typed-array.to-string",
|
|
5964
|
-
"es.typed-array.with"
|
|
6141
|
+
"es.typed-array.with",
|
|
6142
|
+
"es.uint8-array.from-base64",
|
|
6143
|
+
"es.uint8-array.from-hex",
|
|
6144
|
+
"es.uint8-array.set-from-base64",
|
|
6145
|
+
"es.uint8-array.set-from-hex",
|
|
6146
|
+
"es.uint8-array.to-base64",
|
|
6147
|
+
"es.uint8-array.to-hex"
|
|
5965
6148
|
],
|
|
5966
6149
|
"core-js/es/typed-array/int8-array": [
|
|
5967
6150
|
"es.array-buffer.constructor",
|
|
@@ -5999,7 +6182,13 @@
|
|
|
5999
6182
|
"es.typed-array.to-reversed",
|
|
6000
6183
|
"es.typed-array.to-sorted",
|
|
6001
6184
|
"es.typed-array.to-string",
|
|
6002
|
-
"es.typed-array.with"
|
|
6185
|
+
"es.typed-array.with",
|
|
6186
|
+
"es.uint8-array.from-base64",
|
|
6187
|
+
"es.uint8-array.from-hex",
|
|
6188
|
+
"es.uint8-array.set-from-base64",
|
|
6189
|
+
"es.uint8-array.set-from-hex",
|
|
6190
|
+
"es.uint8-array.to-base64",
|
|
6191
|
+
"es.uint8-array.to-hex"
|
|
6003
6192
|
],
|
|
6004
6193
|
"core-js/es/typed-array/iterator": [
|
|
6005
6194
|
"es.object.to-string",
|
|
@@ -6051,7 +6240,13 @@
|
|
|
6051
6240
|
"es.typed-array.to-reversed",
|
|
6052
6241
|
"es.typed-array.to-sorted",
|
|
6053
6242
|
"es.typed-array.to-string",
|
|
6054
|
-
"es.typed-array.with"
|
|
6243
|
+
"es.typed-array.with",
|
|
6244
|
+
"es.uint8-array.from-base64",
|
|
6245
|
+
"es.uint8-array.from-hex",
|
|
6246
|
+
"es.uint8-array.set-from-base64",
|
|
6247
|
+
"es.uint8-array.set-from-hex",
|
|
6248
|
+
"es.uint8-array.to-base64",
|
|
6249
|
+
"es.uint8-array.to-hex"
|
|
6055
6250
|
],
|
|
6056
6251
|
"core-js/es/typed-array/of": [
|
|
6057
6252
|
"es.typed-array.of"
|
|
@@ -6068,6 +6263,12 @@
|
|
|
6068
6263
|
"core-js/es/typed-array/set": [
|
|
6069
6264
|
"es.typed-array.set"
|
|
6070
6265
|
],
|
|
6266
|
+
"core-js/es/typed-array/set-from-base64": [
|
|
6267
|
+
"es.uint8-array.set-from-base64"
|
|
6268
|
+
],
|
|
6269
|
+
"core-js/es/typed-array/set-from-hex": [
|
|
6270
|
+
"es.uint8-array.set-from-hex"
|
|
6271
|
+
],
|
|
6071
6272
|
"core-js/es/typed-array/slice": [
|
|
6072
6273
|
"es.typed-array.slice"
|
|
6073
6274
|
],
|
|
@@ -6080,6 +6281,12 @@
|
|
|
6080
6281
|
"core-js/es/typed-array/subarray": [
|
|
6081
6282
|
"es.typed-array.subarray"
|
|
6082
6283
|
],
|
|
6284
|
+
"core-js/es/typed-array/to-base64": [
|
|
6285
|
+
"es.uint8-array.to-base64"
|
|
6286
|
+
],
|
|
6287
|
+
"core-js/es/typed-array/to-hex": [
|
|
6288
|
+
"es.uint8-array.to-hex"
|
|
6289
|
+
],
|
|
6083
6290
|
"core-js/es/typed-array/to-locale-string": [
|
|
6084
6291
|
"es.typed-array.to-locale-string"
|
|
6085
6292
|
],
|
|
@@ -6129,7 +6336,13 @@
|
|
|
6129
6336
|
"es.typed-array.to-reversed",
|
|
6130
6337
|
"es.typed-array.to-sorted",
|
|
6131
6338
|
"es.typed-array.to-string",
|
|
6132
|
-
"es.typed-array.with"
|
|
6339
|
+
"es.typed-array.with",
|
|
6340
|
+
"es.uint8-array.from-base64",
|
|
6341
|
+
"es.uint8-array.from-hex",
|
|
6342
|
+
"es.uint8-array.set-from-base64",
|
|
6343
|
+
"es.uint8-array.set-from-hex",
|
|
6344
|
+
"es.uint8-array.to-base64",
|
|
6345
|
+
"es.uint8-array.to-hex"
|
|
6133
6346
|
],
|
|
6134
6347
|
"core-js/es/typed-array/uint32-array": [
|
|
6135
6348
|
"es.array-buffer.constructor",
|
|
@@ -6167,7 +6380,13 @@
|
|
|
6167
6380
|
"es.typed-array.to-reversed",
|
|
6168
6381
|
"es.typed-array.to-sorted",
|
|
6169
6382
|
"es.typed-array.to-string",
|
|
6170
|
-
"es.typed-array.with"
|
|
6383
|
+
"es.typed-array.with",
|
|
6384
|
+
"es.uint8-array.from-base64",
|
|
6385
|
+
"es.uint8-array.from-hex",
|
|
6386
|
+
"es.uint8-array.set-from-base64",
|
|
6387
|
+
"es.uint8-array.set-from-hex",
|
|
6388
|
+
"es.uint8-array.to-base64",
|
|
6389
|
+
"es.uint8-array.to-hex"
|
|
6171
6390
|
],
|
|
6172
6391
|
"core-js/es/typed-array/uint8-array": [
|
|
6173
6392
|
"es.array-buffer.constructor",
|
|
@@ -6205,7 +6424,13 @@
|
|
|
6205
6424
|
"es.typed-array.to-reversed",
|
|
6206
6425
|
"es.typed-array.to-sorted",
|
|
6207
6426
|
"es.typed-array.to-string",
|
|
6208
|
-
"es.typed-array.with"
|
|
6427
|
+
"es.typed-array.with",
|
|
6428
|
+
"es.uint8-array.from-base64",
|
|
6429
|
+
"es.uint8-array.from-hex",
|
|
6430
|
+
"es.uint8-array.set-from-base64",
|
|
6431
|
+
"es.uint8-array.set-from-hex",
|
|
6432
|
+
"es.uint8-array.to-base64",
|
|
6433
|
+
"es.uint8-array.to-hex"
|
|
6209
6434
|
],
|
|
6210
6435
|
"core-js/es/typed-array/uint8-clamped-array": [
|
|
6211
6436
|
"es.array-buffer.constructor",
|
|
@@ -6243,7 +6468,13 @@
|
|
|
6243
6468
|
"es.typed-array.to-reversed",
|
|
6244
6469
|
"es.typed-array.to-sorted",
|
|
6245
6470
|
"es.typed-array.to-string",
|
|
6246
|
-
"es.typed-array.with"
|
|
6471
|
+
"es.typed-array.with",
|
|
6472
|
+
"es.uint8-array.from-base64",
|
|
6473
|
+
"es.uint8-array.from-hex",
|
|
6474
|
+
"es.uint8-array.set-from-base64",
|
|
6475
|
+
"es.uint8-array.set-from-hex",
|
|
6476
|
+
"es.uint8-array.to-base64",
|
|
6477
|
+
"es.uint8-array.to-hex"
|
|
6247
6478
|
],
|
|
6248
6479
|
"core-js/es/typed-array/values": [
|
|
6249
6480
|
"es.object.to-string",
|
|
@@ -6384,6 +6615,7 @@
|
|
|
6384
6615
|
"es.math.log2",
|
|
6385
6616
|
"es.math.sign",
|
|
6386
6617
|
"es.math.sinh",
|
|
6618
|
+
"es.math.sum-precise",
|
|
6387
6619
|
"es.math.tanh",
|
|
6388
6620
|
"es.math.to-string-tag",
|
|
6389
6621
|
"es.math.trunc",
|
|
@@ -6545,6 +6777,12 @@
|
|
|
6545
6777
|
"es.typed-array.to-sorted",
|
|
6546
6778
|
"es.typed-array.to-string",
|
|
6547
6779
|
"es.typed-array.with",
|
|
6780
|
+
"es.uint8-array.from-base64",
|
|
6781
|
+
"es.uint8-array.from-hex",
|
|
6782
|
+
"es.uint8-array.set-from-base64",
|
|
6783
|
+
"es.uint8-array.set-from-hex",
|
|
6784
|
+
"es.uint8-array.to-base64",
|
|
6785
|
+
"es.uint8-array.to-hex",
|
|
6548
6786
|
"es.unescape",
|
|
6549
6787
|
"es.weak-map",
|
|
6550
6788
|
"es.weak-set",
|
|
@@ -6619,6 +6857,7 @@
|
|
|
6619
6857
|
"esnext.iterator.map",
|
|
6620
6858
|
"esnext.iterator.range",
|
|
6621
6859
|
"esnext.iterator.reduce",
|
|
6860
|
+
"esnext.iterator.sliding",
|
|
6622
6861
|
"esnext.iterator.some",
|
|
6623
6862
|
"esnext.iterator.take",
|
|
6624
6863
|
"esnext.iterator.to-array",
|
|
@@ -7661,6 +7900,9 @@
|
|
|
7661
7900
|
"core-js/features/instance/bind": [
|
|
7662
7901
|
"es.function.bind"
|
|
7663
7902
|
],
|
|
7903
|
+
"core-js/features/instance/clamp": [
|
|
7904
|
+
"esnext.number.clamp"
|
|
7905
|
+
],
|
|
7664
7906
|
"core-js/features/instance/code-point-at": [
|
|
7665
7907
|
"es.string.code-point-at"
|
|
7666
7908
|
],
|
|
@@ -7904,6 +8146,7 @@
|
|
|
7904
8146
|
"esnext.iterator.map",
|
|
7905
8147
|
"esnext.iterator.range",
|
|
7906
8148
|
"esnext.iterator.reduce",
|
|
8149
|
+
"esnext.iterator.sliding",
|
|
7907
8150
|
"esnext.iterator.some",
|
|
7908
8151
|
"esnext.iterator.take",
|
|
7909
8152
|
"esnext.iterator.to-array",
|
|
@@ -7939,7 +8182,11 @@
|
|
|
7939
8182
|
"es.iterator.to-array",
|
|
7940
8183
|
"es.object.to-string",
|
|
7941
8184
|
"es.string.iterator",
|
|
7942
|
-
"esnext.iterator.
|
|
8185
|
+
"esnext.iterator.chunks",
|
|
8186
|
+
"esnext.iterator.concat",
|
|
8187
|
+
"esnext.iterator.sliding",
|
|
8188
|
+
"esnext.iterator.windows",
|
|
8189
|
+
"web.dom-collections.iterator"
|
|
7943
8190
|
],
|
|
7944
8191
|
"core-js/features/iterator/dispose": [
|
|
7945
8192
|
"esnext.iterator.dispose"
|
|
@@ -8007,6 +8254,7 @@
|
|
|
8007
8254
|
"es.promise",
|
|
8008
8255
|
"es.string.iterator",
|
|
8009
8256
|
"esnext.iterator.constructor",
|
|
8257
|
+
"esnext.iterator.chunks",
|
|
8010
8258
|
"esnext.iterator.dispose",
|
|
8011
8259
|
"esnext.iterator.drop",
|
|
8012
8260
|
"esnext.iterator.every",
|
|
@@ -8017,10 +8265,12 @@
|
|
|
8017
8265
|
"esnext.iterator.from",
|
|
8018
8266
|
"esnext.iterator.map",
|
|
8019
8267
|
"esnext.iterator.reduce",
|
|
8268
|
+
"esnext.iterator.sliding",
|
|
8020
8269
|
"esnext.iterator.some",
|
|
8021
8270
|
"esnext.iterator.take",
|
|
8022
8271
|
"esnext.iterator.to-array",
|
|
8023
8272
|
"esnext.iterator.to-async",
|
|
8273
|
+
"esnext.iterator.windows",
|
|
8024
8274
|
"web.dom-collections.iterator"
|
|
8025
8275
|
],
|
|
8026
8276
|
"core-js/features/iterator/indexed": [
|
|
@@ -8036,9 +8286,27 @@
|
|
|
8036
8286
|
"esnext.iterator.map"
|
|
8037
8287
|
],
|
|
8038
8288
|
"core-js/features/iterator/range": [
|
|
8289
|
+
"es.array.iterator",
|
|
8290
|
+
"es.iterator.constructor",
|
|
8291
|
+
"es.iterator.drop",
|
|
8292
|
+
"es.iterator.every",
|
|
8293
|
+
"es.iterator.filter",
|
|
8294
|
+
"es.iterator.find",
|
|
8295
|
+
"es.iterator.flat-map",
|
|
8296
|
+
"es.iterator.for-each",
|
|
8297
|
+
"es.iterator.map",
|
|
8298
|
+
"es.iterator.reduce",
|
|
8299
|
+
"es.iterator.some",
|
|
8300
|
+
"es.iterator.take",
|
|
8301
|
+
"es.iterator.to-array",
|
|
8039
8302
|
"es.object.to-string",
|
|
8303
|
+
"es.string.iterator",
|
|
8040
8304
|
"esnext.iterator.constructor",
|
|
8041
|
-
"esnext.iterator.
|
|
8305
|
+
"esnext.iterator.chunks",
|
|
8306
|
+
"esnext.iterator.range",
|
|
8307
|
+
"esnext.iterator.sliding",
|
|
8308
|
+
"esnext.iterator.windows",
|
|
8309
|
+
"web.dom-collections.iterator"
|
|
8042
8310
|
],
|
|
8043
8311
|
"core-js/features/iterator/reduce": [
|
|
8044
8312
|
"es.iterator.constructor",
|
|
@@ -8047,6 +8315,11 @@
|
|
|
8047
8315
|
"esnext.iterator.constructor",
|
|
8048
8316
|
"esnext.iterator.reduce"
|
|
8049
8317
|
],
|
|
8318
|
+
"core-js/features/iterator/sliding": [
|
|
8319
|
+
"es.iterator.constructor",
|
|
8320
|
+
"es.object.to-string",
|
|
8321
|
+
"esnext.iterator.sliding"
|
|
8322
|
+
],
|
|
8050
8323
|
"core-js/features/iterator/some": [
|
|
8051
8324
|
"es.iterator.constructor",
|
|
8052
8325
|
"es.iterator.some",
|
|
@@ -8083,16 +8356,46 @@
|
|
|
8083
8356
|
"core-js/features/iterator/zip": [
|
|
8084
8357
|
"es.array.iterator",
|
|
8085
8358
|
"es.iterator.constructor",
|
|
8359
|
+
"es.iterator.drop",
|
|
8360
|
+
"es.iterator.every",
|
|
8361
|
+
"es.iterator.filter",
|
|
8362
|
+
"es.iterator.find",
|
|
8363
|
+
"es.iterator.flat-map",
|
|
8364
|
+
"es.iterator.for-each",
|
|
8365
|
+
"es.iterator.map",
|
|
8366
|
+
"es.iterator.reduce",
|
|
8367
|
+
"es.iterator.some",
|
|
8368
|
+
"es.iterator.take",
|
|
8369
|
+
"es.iterator.to-array",
|
|
8086
8370
|
"es.object.to-string",
|
|
8371
|
+
"es.string.iterator",
|
|
8372
|
+
"esnext.iterator.chunks",
|
|
8373
|
+
"esnext.iterator.sliding",
|
|
8374
|
+
"esnext.iterator.windows",
|
|
8087
8375
|
"esnext.iterator.zip",
|
|
8088
8376
|
"web.dom-collections.iterator"
|
|
8089
8377
|
],
|
|
8090
8378
|
"core-js/features/iterator/zip-keyed": [
|
|
8091
8379
|
"es.array.iterator",
|
|
8092
8380
|
"es.iterator.constructor",
|
|
8381
|
+
"es.iterator.drop",
|
|
8382
|
+
"es.iterator.every",
|
|
8383
|
+
"es.iterator.filter",
|
|
8384
|
+
"es.iterator.find",
|
|
8385
|
+
"es.iterator.flat-map",
|
|
8386
|
+
"es.iterator.for-each",
|
|
8387
|
+
"es.iterator.map",
|
|
8388
|
+
"es.iterator.reduce",
|
|
8389
|
+
"es.iterator.some",
|
|
8390
|
+
"es.iterator.take",
|
|
8391
|
+
"es.iterator.to-array",
|
|
8093
8392
|
"es.object.create",
|
|
8094
8393
|
"es.object.to-string",
|
|
8095
8394
|
"es.reflect.own-keys",
|
|
8395
|
+
"es.string.iterator",
|
|
8396
|
+
"esnext.iterator.chunks",
|
|
8397
|
+
"esnext.iterator.sliding",
|
|
8398
|
+
"esnext.iterator.windows",
|
|
8096
8399
|
"esnext.iterator.zip-keyed",
|
|
8097
8400
|
"web.dom-collections.iterator"
|
|
8098
8401
|
],
|
|
@@ -8335,6 +8638,7 @@
|
|
|
8335
8638
|
"es.math.log2",
|
|
8336
8639
|
"es.math.sign",
|
|
8337
8640
|
"es.math.sinh",
|
|
8641
|
+
"es.math.sum-precise",
|
|
8338
8642
|
"es.math.tanh",
|
|
8339
8643
|
"es.math.to-string-tag",
|
|
8340
8644
|
"es.math.trunc",
|
|
@@ -8441,6 +8745,7 @@
|
|
|
8441
8745
|
],
|
|
8442
8746
|
"core-js/features/math/sum-precise": [
|
|
8443
8747
|
"es.array.iterator",
|
|
8748
|
+
"es.math.sum-precise",
|
|
8444
8749
|
"esnext.math.sum-precise"
|
|
8445
8750
|
],
|
|
8446
8751
|
"core-js/features/math/tanh": [
|
|
@@ -8528,6 +8833,9 @@
|
|
|
8528
8833
|
"es.number.to-fixed",
|
|
8529
8834
|
"es.number.to-precision"
|
|
8530
8835
|
],
|
|
8836
|
+
"core-js/features/number/virtual/clamp": [
|
|
8837
|
+
"esnext.number.clamp"
|
|
8838
|
+
],
|
|
8531
8839
|
"core-js/features/number/virtual/to-exponential": [
|
|
8532
8840
|
"es.number.to-exponential"
|
|
8533
8841
|
],
|
|
@@ -9657,6 +9965,12 @@
|
|
|
9657
9965
|
"es.typed-array.to-sorted",
|
|
9658
9966
|
"es.typed-array.to-string",
|
|
9659
9967
|
"es.typed-array.with",
|
|
9968
|
+
"es.uint8-array.from-base64",
|
|
9969
|
+
"es.uint8-array.from-hex",
|
|
9970
|
+
"es.uint8-array.set-from-base64",
|
|
9971
|
+
"es.uint8-array.set-from-hex",
|
|
9972
|
+
"es.uint8-array.to-base64",
|
|
9973
|
+
"es.uint8-array.to-hex",
|
|
9660
9974
|
"esnext.typed-array.from-async",
|
|
9661
9975
|
"esnext.typed-array.at",
|
|
9662
9976
|
"esnext.typed-array.filter-out",
|
|
@@ -9755,6 +10069,12 @@
|
|
|
9755
10069
|
"es.typed-array.to-sorted",
|
|
9756
10070
|
"es.typed-array.to-string",
|
|
9757
10071
|
"es.typed-array.with",
|
|
10072
|
+
"es.uint8-array.from-base64",
|
|
10073
|
+
"es.uint8-array.from-hex",
|
|
10074
|
+
"es.uint8-array.set-from-base64",
|
|
10075
|
+
"es.uint8-array.set-from-hex",
|
|
10076
|
+
"es.uint8-array.to-base64",
|
|
10077
|
+
"es.uint8-array.to-hex",
|
|
9758
10078
|
"esnext.typed-array.from-async",
|
|
9759
10079
|
"esnext.typed-array.at",
|
|
9760
10080
|
"esnext.typed-array.filter-out",
|
|
@@ -9813,6 +10133,12 @@
|
|
|
9813
10133
|
"es.typed-array.to-sorted",
|
|
9814
10134
|
"es.typed-array.to-string",
|
|
9815
10135
|
"es.typed-array.with",
|
|
10136
|
+
"es.uint8-array.from-base64",
|
|
10137
|
+
"es.uint8-array.from-hex",
|
|
10138
|
+
"es.uint8-array.set-from-base64",
|
|
10139
|
+
"es.uint8-array.set-from-hex",
|
|
10140
|
+
"es.uint8-array.to-base64",
|
|
10141
|
+
"es.uint8-array.to-hex",
|
|
9816
10142
|
"esnext.typed-array.from-async",
|
|
9817
10143
|
"esnext.typed-array.at",
|
|
9818
10144
|
"esnext.typed-array.filter-out",
|
|
@@ -9842,9 +10168,11 @@
|
|
|
9842
10168
|
"esnext.typed-array.from-async"
|
|
9843
10169
|
],
|
|
9844
10170
|
"core-js/features/typed-array/from-base64": [
|
|
10171
|
+
"es.uint8-array.from-base64",
|
|
9845
10172
|
"esnext.uint8-array.from-base64"
|
|
9846
10173
|
],
|
|
9847
10174
|
"core-js/features/typed-array/from-hex": [
|
|
10175
|
+
"es.uint8-array.from-hex",
|
|
9848
10176
|
"esnext.uint8-array.from-hex"
|
|
9849
10177
|
],
|
|
9850
10178
|
"core-js/features/typed-array/group-by": [
|
|
@@ -9895,6 +10223,12 @@
|
|
|
9895
10223
|
"es.typed-array.to-sorted",
|
|
9896
10224
|
"es.typed-array.to-string",
|
|
9897
10225
|
"es.typed-array.with",
|
|
10226
|
+
"es.uint8-array.from-base64",
|
|
10227
|
+
"es.uint8-array.from-hex",
|
|
10228
|
+
"es.uint8-array.set-from-base64",
|
|
10229
|
+
"es.uint8-array.set-from-hex",
|
|
10230
|
+
"es.uint8-array.to-base64",
|
|
10231
|
+
"es.uint8-array.to-hex",
|
|
9898
10232
|
"esnext.typed-array.from-async",
|
|
9899
10233
|
"esnext.typed-array.at",
|
|
9900
10234
|
"esnext.typed-array.filter-out",
|
|
@@ -9953,6 +10287,12 @@
|
|
|
9953
10287
|
"es.typed-array.to-sorted",
|
|
9954
10288
|
"es.typed-array.to-string",
|
|
9955
10289
|
"es.typed-array.with",
|
|
10290
|
+
"es.uint8-array.from-base64",
|
|
10291
|
+
"es.uint8-array.from-hex",
|
|
10292
|
+
"es.uint8-array.set-from-base64",
|
|
10293
|
+
"es.uint8-array.set-from-hex",
|
|
10294
|
+
"es.uint8-array.to-base64",
|
|
10295
|
+
"es.uint8-array.to-hex",
|
|
9956
10296
|
"esnext.typed-array.from-async",
|
|
9957
10297
|
"esnext.typed-array.at",
|
|
9958
10298
|
"esnext.typed-array.filter-out",
|
|
@@ -10011,6 +10351,12 @@
|
|
|
10011
10351
|
"es.typed-array.to-sorted",
|
|
10012
10352
|
"es.typed-array.to-string",
|
|
10013
10353
|
"es.typed-array.with",
|
|
10354
|
+
"es.uint8-array.from-base64",
|
|
10355
|
+
"es.uint8-array.from-hex",
|
|
10356
|
+
"es.uint8-array.set-from-base64",
|
|
10357
|
+
"es.uint8-array.set-from-hex",
|
|
10358
|
+
"es.uint8-array.to-base64",
|
|
10359
|
+
"es.uint8-array.to-hex",
|
|
10014
10360
|
"esnext.typed-array.from-async",
|
|
10015
10361
|
"esnext.typed-array.at",
|
|
10016
10362
|
"esnext.typed-array.filter-out",
|
|
@@ -10083,6 +10429,12 @@
|
|
|
10083
10429
|
"es.typed-array.to-sorted",
|
|
10084
10430
|
"es.typed-array.to-string",
|
|
10085
10431
|
"es.typed-array.with",
|
|
10432
|
+
"es.uint8-array.from-base64",
|
|
10433
|
+
"es.uint8-array.from-hex",
|
|
10434
|
+
"es.uint8-array.set-from-base64",
|
|
10435
|
+
"es.uint8-array.set-from-hex",
|
|
10436
|
+
"es.uint8-array.to-base64",
|
|
10437
|
+
"es.uint8-array.to-hex",
|
|
10086
10438
|
"esnext.typed-array.from-async",
|
|
10087
10439
|
"esnext.typed-array.at",
|
|
10088
10440
|
"esnext.typed-array.filter-out",
|
|
@@ -10118,9 +10470,11 @@
|
|
|
10118
10470
|
"es.typed-array.set"
|
|
10119
10471
|
],
|
|
10120
10472
|
"core-js/features/typed-array/set-from-base64": [
|
|
10473
|
+
"es.uint8-array.set-from-base64",
|
|
10121
10474
|
"esnext.uint8-array.set-from-base64"
|
|
10122
10475
|
],
|
|
10123
10476
|
"core-js/features/typed-array/set-from-hex": [
|
|
10477
|
+
"es.uint8-array.set-from-hex",
|
|
10124
10478
|
"esnext.uint8-array.set-from-hex"
|
|
10125
10479
|
],
|
|
10126
10480
|
"core-js/features/typed-array/slice": [
|
|
@@ -10136,9 +10490,11 @@
|
|
|
10136
10490
|
"es.typed-array.subarray"
|
|
10137
10491
|
],
|
|
10138
10492
|
"core-js/features/typed-array/to-base64": [
|
|
10493
|
+
"es.uint8-array.to-base64",
|
|
10139
10494
|
"esnext.uint8-array.to-base64"
|
|
10140
10495
|
],
|
|
10141
10496
|
"core-js/features/typed-array/to-hex": [
|
|
10497
|
+
"es.uint8-array.to-hex",
|
|
10142
10498
|
"esnext.uint8-array.to-hex"
|
|
10143
10499
|
],
|
|
10144
10500
|
"core-js/features/typed-array/to-locale-string": [
|
|
@@ -10198,6 +10554,12 @@
|
|
|
10198
10554
|
"es.typed-array.to-sorted",
|
|
10199
10555
|
"es.typed-array.to-string",
|
|
10200
10556
|
"es.typed-array.with",
|
|
10557
|
+
"es.uint8-array.from-base64",
|
|
10558
|
+
"es.uint8-array.from-hex",
|
|
10559
|
+
"es.uint8-array.set-from-base64",
|
|
10560
|
+
"es.uint8-array.set-from-hex",
|
|
10561
|
+
"es.uint8-array.to-base64",
|
|
10562
|
+
"es.uint8-array.to-hex",
|
|
10201
10563
|
"esnext.typed-array.from-async",
|
|
10202
10564
|
"esnext.typed-array.at",
|
|
10203
10565
|
"esnext.typed-array.filter-out",
|
|
@@ -10256,6 +10618,12 @@
|
|
|
10256
10618
|
"es.typed-array.to-sorted",
|
|
10257
10619
|
"es.typed-array.to-string",
|
|
10258
10620
|
"es.typed-array.with",
|
|
10621
|
+
"es.uint8-array.from-base64",
|
|
10622
|
+
"es.uint8-array.from-hex",
|
|
10623
|
+
"es.uint8-array.set-from-base64",
|
|
10624
|
+
"es.uint8-array.set-from-hex",
|
|
10625
|
+
"es.uint8-array.to-base64",
|
|
10626
|
+
"es.uint8-array.to-hex",
|
|
10259
10627
|
"esnext.typed-array.from-async",
|
|
10260
10628
|
"esnext.typed-array.at",
|
|
10261
10629
|
"esnext.typed-array.filter-out",
|
|
@@ -10314,6 +10682,12 @@
|
|
|
10314
10682
|
"es.typed-array.to-sorted",
|
|
10315
10683
|
"es.typed-array.to-string",
|
|
10316
10684
|
"es.typed-array.with",
|
|
10685
|
+
"es.uint8-array.from-base64",
|
|
10686
|
+
"es.uint8-array.from-hex",
|
|
10687
|
+
"es.uint8-array.set-from-base64",
|
|
10688
|
+
"es.uint8-array.set-from-hex",
|
|
10689
|
+
"es.uint8-array.to-base64",
|
|
10690
|
+
"es.uint8-array.to-hex",
|
|
10317
10691
|
"esnext.typed-array.from-async",
|
|
10318
10692
|
"esnext.typed-array.at",
|
|
10319
10693
|
"esnext.typed-array.filter-out",
|
|
@@ -10372,6 +10746,12 @@
|
|
|
10372
10746
|
"es.typed-array.to-sorted",
|
|
10373
10747
|
"es.typed-array.to-string",
|
|
10374
10748
|
"es.typed-array.with",
|
|
10749
|
+
"es.uint8-array.from-base64",
|
|
10750
|
+
"es.uint8-array.from-hex",
|
|
10751
|
+
"es.uint8-array.set-from-base64",
|
|
10752
|
+
"es.uint8-array.set-from-hex",
|
|
10753
|
+
"es.uint8-array.to-base64",
|
|
10754
|
+
"es.uint8-array.to-hex",
|
|
10375
10755
|
"esnext.typed-array.from-async",
|
|
10376
10756
|
"esnext.typed-array.at",
|
|
10377
10757
|
"esnext.typed-array.filter-out",
|
|
@@ -10646,6 +11026,7 @@
|
|
|
10646
11026
|
"es.math.log2",
|
|
10647
11027
|
"es.math.sign",
|
|
10648
11028
|
"es.math.sinh",
|
|
11029
|
+
"es.math.sum-precise",
|
|
10649
11030
|
"es.math.tanh",
|
|
10650
11031
|
"es.math.to-string-tag",
|
|
10651
11032
|
"es.math.trunc",
|
|
@@ -10807,6 +11188,12 @@
|
|
|
10807
11188
|
"es.typed-array.to-sorted",
|
|
10808
11189
|
"es.typed-array.to-string",
|
|
10809
11190
|
"es.typed-array.with",
|
|
11191
|
+
"es.uint8-array.from-base64",
|
|
11192
|
+
"es.uint8-array.from-hex",
|
|
11193
|
+
"es.uint8-array.set-from-base64",
|
|
11194
|
+
"es.uint8-array.set-from-hex",
|
|
11195
|
+
"es.uint8-array.to-base64",
|
|
11196
|
+
"es.uint8-array.to-hex",
|
|
10810
11197
|
"es.unescape",
|
|
10811
11198
|
"es.weak-map",
|
|
10812
11199
|
"es.weak-set",
|
|
@@ -10881,6 +11268,7 @@
|
|
|
10881
11268
|
"esnext.iterator.map",
|
|
10882
11269
|
"esnext.iterator.range",
|
|
10883
11270
|
"esnext.iterator.reduce",
|
|
11271
|
+
"esnext.iterator.sliding",
|
|
10884
11272
|
"esnext.iterator.some",
|
|
10885
11273
|
"esnext.iterator.take",
|
|
10886
11274
|
"esnext.iterator.to-array",
|
|
@@ -11923,6 +12311,9 @@
|
|
|
11923
12311
|
"core-js/full/instance/bind": [
|
|
11924
12312
|
"es.function.bind"
|
|
11925
12313
|
],
|
|
12314
|
+
"core-js/full/instance/clamp": [
|
|
12315
|
+
"esnext.number.clamp"
|
|
12316
|
+
],
|
|
11926
12317
|
"core-js/full/instance/code-point-at": [
|
|
11927
12318
|
"es.string.code-point-at"
|
|
11928
12319
|
],
|
|
@@ -12166,6 +12557,7 @@
|
|
|
12166
12557
|
"esnext.iterator.map",
|
|
12167
12558
|
"esnext.iterator.range",
|
|
12168
12559
|
"esnext.iterator.reduce",
|
|
12560
|
+
"esnext.iterator.sliding",
|
|
12169
12561
|
"esnext.iterator.some",
|
|
12170
12562
|
"esnext.iterator.take",
|
|
12171
12563
|
"esnext.iterator.to-array",
|
|
@@ -12201,7 +12593,11 @@
|
|
|
12201
12593
|
"es.iterator.to-array",
|
|
12202
12594
|
"es.object.to-string",
|
|
12203
12595
|
"es.string.iterator",
|
|
12204
|
-
"esnext.iterator.
|
|
12596
|
+
"esnext.iterator.chunks",
|
|
12597
|
+
"esnext.iterator.concat",
|
|
12598
|
+
"esnext.iterator.sliding",
|
|
12599
|
+
"esnext.iterator.windows",
|
|
12600
|
+
"web.dom-collections.iterator"
|
|
12205
12601
|
],
|
|
12206
12602
|
"core-js/full/iterator/dispose": [
|
|
12207
12603
|
"esnext.iterator.dispose"
|
|
@@ -12269,6 +12665,7 @@
|
|
|
12269
12665
|
"es.promise",
|
|
12270
12666
|
"es.string.iterator",
|
|
12271
12667
|
"esnext.iterator.constructor",
|
|
12668
|
+
"esnext.iterator.chunks",
|
|
12272
12669
|
"esnext.iterator.dispose",
|
|
12273
12670
|
"esnext.iterator.drop",
|
|
12274
12671
|
"esnext.iterator.every",
|
|
@@ -12279,10 +12676,12 @@
|
|
|
12279
12676
|
"esnext.iterator.from",
|
|
12280
12677
|
"esnext.iterator.map",
|
|
12281
12678
|
"esnext.iterator.reduce",
|
|
12679
|
+
"esnext.iterator.sliding",
|
|
12282
12680
|
"esnext.iterator.some",
|
|
12283
12681
|
"esnext.iterator.take",
|
|
12284
12682
|
"esnext.iterator.to-array",
|
|
12285
12683
|
"esnext.iterator.to-async",
|
|
12684
|
+
"esnext.iterator.windows",
|
|
12286
12685
|
"web.dom-collections.iterator"
|
|
12287
12686
|
],
|
|
12288
12687
|
"core-js/full/iterator/indexed": [
|
|
@@ -12298,9 +12697,27 @@
|
|
|
12298
12697
|
"esnext.iterator.map"
|
|
12299
12698
|
],
|
|
12300
12699
|
"core-js/full/iterator/range": [
|
|
12700
|
+
"es.array.iterator",
|
|
12701
|
+
"es.iterator.constructor",
|
|
12702
|
+
"es.iterator.drop",
|
|
12703
|
+
"es.iterator.every",
|
|
12704
|
+
"es.iterator.filter",
|
|
12705
|
+
"es.iterator.find",
|
|
12706
|
+
"es.iterator.flat-map",
|
|
12707
|
+
"es.iterator.for-each",
|
|
12708
|
+
"es.iterator.map",
|
|
12709
|
+
"es.iterator.reduce",
|
|
12710
|
+
"es.iterator.some",
|
|
12711
|
+
"es.iterator.take",
|
|
12712
|
+
"es.iterator.to-array",
|
|
12301
12713
|
"es.object.to-string",
|
|
12714
|
+
"es.string.iterator",
|
|
12302
12715
|
"esnext.iterator.constructor",
|
|
12303
|
-
"esnext.iterator.
|
|
12716
|
+
"esnext.iterator.chunks",
|
|
12717
|
+
"esnext.iterator.range",
|
|
12718
|
+
"esnext.iterator.sliding",
|
|
12719
|
+
"esnext.iterator.windows",
|
|
12720
|
+
"web.dom-collections.iterator"
|
|
12304
12721
|
],
|
|
12305
12722
|
"core-js/full/iterator/reduce": [
|
|
12306
12723
|
"es.iterator.constructor",
|
|
@@ -12309,6 +12726,11 @@
|
|
|
12309
12726
|
"esnext.iterator.constructor",
|
|
12310
12727
|
"esnext.iterator.reduce"
|
|
12311
12728
|
],
|
|
12729
|
+
"core-js/full/iterator/sliding": [
|
|
12730
|
+
"es.iterator.constructor",
|
|
12731
|
+
"es.object.to-string",
|
|
12732
|
+
"esnext.iterator.sliding"
|
|
12733
|
+
],
|
|
12312
12734
|
"core-js/full/iterator/some": [
|
|
12313
12735
|
"es.iterator.constructor",
|
|
12314
12736
|
"es.iterator.some",
|
|
@@ -12345,16 +12767,46 @@
|
|
|
12345
12767
|
"core-js/full/iterator/zip": [
|
|
12346
12768
|
"es.array.iterator",
|
|
12347
12769
|
"es.iterator.constructor",
|
|
12770
|
+
"es.iterator.drop",
|
|
12771
|
+
"es.iterator.every",
|
|
12772
|
+
"es.iterator.filter",
|
|
12773
|
+
"es.iterator.find",
|
|
12774
|
+
"es.iterator.flat-map",
|
|
12775
|
+
"es.iterator.for-each",
|
|
12776
|
+
"es.iterator.map",
|
|
12777
|
+
"es.iterator.reduce",
|
|
12778
|
+
"es.iterator.some",
|
|
12779
|
+
"es.iterator.take",
|
|
12780
|
+
"es.iterator.to-array",
|
|
12348
12781
|
"es.object.to-string",
|
|
12782
|
+
"es.string.iterator",
|
|
12783
|
+
"esnext.iterator.chunks",
|
|
12784
|
+
"esnext.iterator.sliding",
|
|
12785
|
+
"esnext.iterator.windows",
|
|
12349
12786
|
"esnext.iterator.zip",
|
|
12350
12787
|
"web.dom-collections.iterator"
|
|
12351
12788
|
],
|
|
12352
12789
|
"core-js/full/iterator/zip-keyed": [
|
|
12353
12790
|
"es.array.iterator",
|
|
12354
12791
|
"es.iterator.constructor",
|
|
12792
|
+
"es.iterator.drop",
|
|
12793
|
+
"es.iterator.every",
|
|
12794
|
+
"es.iterator.filter",
|
|
12795
|
+
"es.iterator.find",
|
|
12796
|
+
"es.iterator.flat-map",
|
|
12797
|
+
"es.iterator.for-each",
|
|
12798
|
+
"es.iterator.map",
|
|
12799
|
+
"es.iterator.reduce",
|
|
12800
|
+
"es.iterator.some",
|
|
12801
|
+
"es.iterator.take",
|
|
12802
|
+
"es.iterator.to-array",
|
|
12355
12803
|
"es.object.create",
|
|
12356
12804
|
"es.object.to-string",
|
|
12357
12805
|
"es.reflect.own-keys",
|
|
12806
|
+
"es.string.iterator",
|
|
12807
|
+
"esnext.iterator.chunks",
|
|
12808
|
+
"esnext.iterator.sliding",
|
|
12809
|
+
"esnext.iterator.windows",
|
|
12358
12810
|
"esnext.iterator.zip-keyed",
|
|
12359
12811
|
"web.dom-collections.iterator"
|
|
12360
12812
|
],
|
|
@@ -12597,6 +13049,7 @@
|
|
|
12597
13049
|
"es.math.log2",
|
|
12598
13050
|
"es.math.sign",
|
|
12599
13051
|
"es.math.sinh",
|
|
13052
|
+
"es.math.sum-precise",
|
|
12600
13053
|
"es.math.tanh",
|
|
12601
13054
|
"es.math.to-string-tag",
|
|
12602
13055
|
"es.math.trunc",
|
|
@@ -12703,6 +13156,7 @@
|
|
|
12703
13156
|
],
|
|
12704
13157
|
"core-js/full/math/sum-precise": [
|
|
12705
13158
|
"es.array.iterator",
|
|
13159
|
+
"es.math.sum-precise",
|
|
12706
13160
|
"esnext.math.sum-precise"
|
|
12707
13161
|
],
|
|
12708
13162
|
"core-js/full/math/tanh": [
|
|
@@ -12790,6 +13244,9 @@
|
|
|
12790
13244
|
"es.number.to-fixed",
|
|
12791
13245
|
"es.number.to-precision"
|
|
12792
13246
|
],
|
|
13247
|
+
"core-js/full/number/virtual/clamp": [
|
|
13248
|
+
"esnext.number.clamp"
|
|
13249
|
+
],
|
|
12793
13250
|
"core-js/full/number/virtual/to-exponential": [
|
|
12794
13251
|
"es.number.to-exponential"
|
|
12795
13252
|
],
|
|
@@ -13919,6 +14376,12 @@
|
|
|
13919
14376
|
"es.typed-array.to-sorted",
|
|
13920
14377
|
"es.typed-array.to-string",
|
|
13921
14378
|
"es.typed-array.with",
|
|
14379
|
+
"es.uint8-array.from-base64",
|
|
14380
|
+
"es.uint8-array.from-hex",
|
|
14381
|
+
"es.uint8-array.set-from-base64",
|
|
14382
|
+
"es.uint8-array.set-from-hex",
|
|
14383
|
+
"es.uint8-array.to-base64",
|
|
14384
|
+
"es.uint8-array.to-hex",
|
|
13922
14385
|
"esnext.typed-array.from-async",
|
|
13923
14386
|
"esnext.typed-array.at",
|
|
13924
14387
|
"esnext.typed-array.filter-out",
|
|
@@ -14017,6 +14480,12 @@
|
|
|
14017
14480
|
"es.typed-array.to-sorted",
|
|
14018
14481
|
"es.typed-array.to-string",
|
|
14019
14482
|
"es.typed-array.with",
|
|
14483
|
+
"es.uint8-array.from-base64",
|
|
14484
|
+
"es.uint8-array.from-hex",
|
|
14485
|
+
"es.uint8-array.set-from-base64",
|
|
14486
|
+
"es.uint8-array.set-from-hex",
|
|
14487
|
+
"es.uint8-array.to-base64",
|
|
14488
|
+
"es.uint8-array.to-hex",
|
|
14020
14489
|
"esnext.typed-array.from-async",
|
|
14021
14490
|
"esnext.typed-array.at",
|
|
14022
14491
|
"esnext.typed-array.filter-out",
|
|
@@ -14075,6 +14544,12 @@
|
|
|
14075
14544
|
"es.typed-array.to-sorted",
|
|
14076
14545
|
"es.typed-array.to-string",
|
|
14077
14546
|
"es.typed-array.with",
|
|
14547
|
+
"es.uint8-array.from-base64",
|
|
14548
|
+
"es.uint8-array.from-hex",
|
|
14549
|
+
"es.uint8-array.set-from-base64",
|
|
14550
|
+
"es.uint8-array.set-from-hex",
|
|
14551
|
+
"es.uint8-array.to-base64",
|
|
14552
|
+
"es.uint8-array.to-hex",
|
|
14078
14553
|
"esnext.typed-array.from-async",
|
|
14079
14554
|
"esnext.typed-array.at",
|
|
14080
14555
|
"esnext.typed-array.filter-out",
|
|
@@ -14104,9 +14579,11 @@
|
|
|
14104
14579
|
"esnext.typed-array.from-async"
|
|
14105
14580
|
],
|
|
14106
14581
|
"core-js/full/typed-array/from-base64": [
|
|
14582
|
+
"es.uint8-array.from-base64",
|
|
14107
14583
|
"esnext.uint8-array.from-base64"
|
|
14108
14584
|
],
|
|
14109
14585
|
"core-js/full/typed-array/from-hex": [
|
|
14586
|
+
"es.uint8-array.from-hex",
|
|
14110
14587
|
"esnext.uint8-array.from-hex"
|
|
14111
14588
|
],
|
|
14112
14589
|
"core-js/full/typed-array/group-by": [
|
|
@@ -14157,6 +14634,12 @@
|
|
|
14157
14634
|
"es.typed-array.to-sorted",
|
|
14158
14635
|
"es.typed-array.to-string",
|
|
14159
14636
|
"es.typed-array.with",
|
|
14637
|
+
"es.uint8-array.from-base64",
|
|
14638
|
+
"es.uint8-array.from-hex",
|
|
14639
|
+
"es.uint8-array.set-from-base64",
|
|
14640
|
+
"es.uint8-array.set-from-hex",
|
|
14641
|
+
"es.uint8-array.to-base64",
|
|
14642
|
+
"es.uint8-array.to-hex",
|
|
14160
14643
|
"esnext.typed-array.from-async",
|
|
14161
14644
|
"esnext.typed-array.at",
|
|
14162
14645
|
"esnext.typed-array.filter-out",
|
|
@@ -14215,6 +14698,12 @@
|
|
|
14215
14698
|
"es.typed-array.to-sorted",
|
|
14216
14699
|
"es.typed-array.to-string",
|
|
14217
14700
|
"es.typed-array.with",
|
|
14701
|
+
"es.uint8-array.from-base64",
|
|
14702
|
+
"es.uint8-array.from-hex",
|
|
14703
|
+
"es.uint8-array.set-from-base64",
|
|
14704
|
+
"es.uint8-array.set-from-hex",
|
|
14705
|
+
"es.uint8-array.to-base64",
|
|
14706
|
+
"es.uint8-array.to-hex",
|
|
14218
14707
|
"esnext.typed-array.from-async",
|
|
14219
14708
|
"esnext.typed-array.at",
|
|
14220
14709
|
"esnext.typed-array.filter-out",
|
|
@@ -14273,6 +14762,12 @@
|
|
|
14273
14762
|
"es.typed-array.to-sorted",
|
|
14274
14763
|
"es.typed-array.to-string",
|
|
14275
14764
|
"es.typed-array.with",
|
|
14765
|
+
"es.uint8-array.from-base64",
|
|
14766
|
+
"es.uint8-array.from-hex",
|
|
14767
|
+
"es.uint8-array.set-from-base64",
|
|
14768
|
+
"es.uint8-array.set-from-hex",
|
|
14769
|
+
"es.uint8-array.to-base64",
|
|
14770
|
+
"es.uint8-array.to-hex",
|
|
14276
14771
|
"esnext.typed-array.from-async",
|
|
14277
14772
|
"esnext.typed-array.at",
|
|
14278
14773
|
"esnext.typed-array.filter-out",
|
|
@@ -14345,6 +14840,12 @@
|
|
|
14345
14840
|
"es.typed-array.to-sorted",
|
|
14346
14841
|
"es.typed-array.to-string",
|
|
14347
14842
|
"es.typed-array.with",
|
|
14843
|
+
"es.uint8-array.from-base64",
|
|
14844
|
+
"es.uint8-array.from-hex",
|
|
14845
|
+
"es.uint8-array.set-from-base64",
|
|
14846
|
+
"es.uint8-array.set-from-hex",
|
|
14847
|
+
"es.uint8-array.to-base64",
|
|
14848
|
+
"es.uint8-array.to-hex",
|
|
14348
14849
|
"esnext.typed-array.from-async",
|
|
14349
14850
|
"esnext.typed-array.at",
|
|
14350
14851
|
"esnext.typed-array.filter-out",
|
|
@@ -14380,9 +14881,11 @@
|
|
|
14380
14881
|
"es.typed-array.set"
|
|
14381
14882
|
],
|
|
14382
14883
|
"core-js/full/typed-array/set-from-base64": [
|
|
14884
|
+
"es.uint8-array.set-from-base64",
|
|
14383
14885
|
"esnext.uint8-array.set-from-base64"
|
|
14384
14886
|
],
|
|
14385
14887
|
"core-js/full/typed-array/set-from-hex": [
|
|
14888
|
+
"es.uint8-array.set-from-hex",
|
|
14386
14889
|
"esnext.uint8-array.set-from-hex"
|
|
14387
14890
|
],
|
|
14388
14891
|
"core-js/full/typed-array/slice": [
|
|
@@ -14398,9 +14901,11 @@
|
|
|
14398
14901
|
"es.typed-array.subarray"
|
|
14399
14902
|
],
|
|
14400
14903
|
"core-js/full/typed-array/to-base64": [
|
|
14904
|
+
"es.uint8-array.to-base64",
|
|
14401
14905
|
"esnext.uint8-array.to-base64"
|
|
14402
14906
|
],
|
|
14403
14907
|
"core-js/full/typed-array/to-hex": [
|
|
14908
|
+
"es.uint8-array.to-hex",
|
|
14404
14909
|
"esnext.uint8-array.to-hex"
|
|
14405
14910
|
],
|
|
14406
14911
|
"core-js/full/typed-array/to-locale-string": [
|
|
@@ -14460,6 +14965,12 @@
|
|
|
14460
14965
|
"es.typed-array.to-sorted",
|
|
14461
14966
|
"es.typed-array.to-string",
|
|
14462
14967
|
"es.typed-array.with",
|
|
14968
|
+
"es.uint8-array.from-base64",
|
|
14969
|
+
"es.uint8-array.from-hex",
|
|
14970
|
+
"es.uint8-array.set-from-base64",
|
|
14971
|
+
"es.uint8-array.set-from-hex",
|
|
14972
|
+
"es.uint8-array.to-base64",
|
|
14973
|
+
"es.uint8-array.to-hex",
|
|
14463
14974
|
"esnext.typed-array.from-async",
|
|
14464
14975
|
"esnext.typed-array.at",
|
|
14465
14976
|
"esnext.typed-array.filter-out",
|
|
@@ -14518,6 +15029,12 @@
|
|
|
14518
15029
|
"es.typed-array.to-sorted",
|
|
14519
15030
|
"es.typed-array.to-string",
|
|
14520
15031
|
"es.typed-array.with",
|
|
15032
|
+
"es.uint8-array.from-base64",
|
|
15033
|
+
"es.uint8-array.from-hex",
|
|
15034
|
+
"es.uint8-array.set-from-base64",
|
|
15035
|
+
"es.uint8-array.set-from-hex",
|
|
15036
|
+
"es.uint8-array.to-base64",
|
|
15037
|
+
"es.uint8-array.to-hex",
|
|
14521
15038
|
"esnext.typed-array.from-async",
|
|
14522
15039
|
"esnext.typed-array.at",
|
|
14523
15040
|
"esnext.typed-array.filter-out",
|
|
@@ -14576,6 +15093,12 @@
|
|
|
14576
15093
|
"es.typed-array.to-sorted",
|
|
14577
15094
|
"es.typed-array.to-string",
|
|
14578
15095
|
"es.typed-array.with",
|
|
15096
|
+
"es.uint8-array.from-base64",
|
|
15097
|
+
"es.uint8-array.from-hex",
|
|
15098
|
+
"es.uint8-array.set-from-base64",
|
|
15099
|
+
"es.uint8-array.set-from-hex",
|
|
15100
|
+
"es.uint8-array.to-base64",
|
|
15101
|
+
"es.uint8-array.to-hex",
|
|
14579
15102
|
"esnext.typed-array.from-async",
|
|
14580
15103
|
"esnext.typed-array.at",
|
|
14581
15104
|
"esnext.typed-array.filter-out",
|
|
@@ -14634,6 +15157,12 @@
|
|
|
14634
15157
|
"es.typed-array.to-sorted",
|
|
14635
15158
|
"es.typed-array.to-string",
|
|
14636
15159
|
"es.typed-array.with",
|
|
15160
|
+
"es.uint8-array.from-base64",
|
|
15161
|
+
"es.uint8-array.from-hex",
|
|
15162
|
+
"es.uint8-array.set-from-base64",
|
|
15163
|
+
"es.uint8-array.set-from-hex",
|
|
15164
|
+
"es.uint8-array.to-base64",
|
|
15165
|
+
"es.uint8-array.to-hex",
|
|
14637
15166
|
"esnext.typed-array.from-async",
|
|
14638
15167
|
"esnext.typed-array.at",
|
|
14639
15168
|
"esnext.typed-array.filter-out",
|
|
@@ -15107,6 +15636,9 @@
|
|
|
15107
15636
|
"core-js/modules/es.math.sinh": [
|
|
15108
15637
|
"es.math.sinh"
|
|
15109
15638
|
],
|
|
15639
|
+
"core-js/modules/es.math.sum-precise": [
|
|
15640
|
+
"es.math.sum-precise"
|
|
15641
|
+
],
|
|
15110
15642
|
"core-js/modules/es.math.tanh": [
|
|
15111
15643
|
"es.math.tanh"
|
|
15112
15644
|
],
|
|
@@ -15674,6 +16206,24 @@
|
|
|
15674
16206
|
"core-js/modules/es.typed-array.with": [
|
|
15675
16207
|
"es.typed-array.with"
|
|
15676
16208
|
],
|
|
16209
|
+
"core-js/modules/es.uint8-array.from-base64": [
|
|
16210
|
+
"es.uint8-array.from-base64"
|
|
16211
|
+
],
|
|
16212
|
+
"core-js/modules/es.uint8-array.from-hex": [
|
|
16213
|
+
"es.uint8-array.from-hex"
|
|
16214
|
+
],
|
|
16215
|
+
"core-js/modules/es.uint8-array.set-from-base64": [
|
|
16216
|
+
"es.uint8-array.set-from-base64"
|
|
16217
|
+
],
|
|
16218
|
+
"core-js/modules/es.uint8-array.set-from-hex": [
|
|
16219
|
+
"es.uint8-array.set-from-hex"
|
|
16220
|
+
],
|
|
16221
|
+
"core-js/modules/es.uint8-array.to-base64": [
|
|
16222
|
+
"es.uint8-array.to-base64"
|
|
16223
|
+
],
|
|
16224
|
+
"core-js/modules/es.uint8-array.to-hex": [
|
|
16225
|
+
"es.uint8-array.to-hex"
|
|
16226
|
+
],
|
|
15677
16227
|
"core-js/modules/es.unescape": [
|
|
15678
16228
|
"es.unescape"
|
|
15679
16229
|
],
|
|
@@ -15899,6 +16449,9 @@
|
|
|
15899
16449
|
"core-js/modules/esnext.iterator.reduce": [
|
|
15900
16450
|
"esnext.iterator.reduce"
|
|
15901
16451
|
],
|
|
16452
|
+
"core-js/modules/esnext.iterator.sliding": [
|
|
16453
|
+
"esnext.iterator.sliding"
|
|
16454
|
+
],
|
|
15902
16455
|
"core-js/modules/esnext.iterator.some": [
|
|
15903
16456
|
"esnext.iterator.some"
|
|
15904
16457
|
],
|
|
@@ -16501,6 +17054,7 @@
|
|
|
16501
17054
|
"esnext.iterator.map",
|
|
16502
17055
|
"esnext.iterator.range",
|
|
16503
17056
|
"esnext.iterator.reduce",
|
|
17057
|
+
"esnext.iterator.sliding",
|
|
16504
17058
|
"esnext.iterator.some",
|
|
16505
17059
|
"esnext.iterator.take",
|
|
16506
17060
|
"esnext.iterator.to-array",
|
|
@@ -16875,6 +17429,7 @@
|
|
|
16875
17429
|
],
|
|
16876
17430
|
"core-js/proposals/iterator-chunking": [
|
|
16877
17431
|
"esnext.iterator.chunks",
|
|
17432
|
+
"esnext.iterator.sliding",
|
|
16878
17433
|
"esnext.iterator.windows"
|
|
16879
17434
|
],
|
|
16880
17435
|
"core-js/proposals/iterator-helpers": [
|
|
@@ -17307,6 +17862,7 @@
|
|
|
17307
17862
|
"es.math.log2",
|
|
17308
17863
|
"es.math.sign",
|
|
17309
17864
|
"es.math.sinh",
|
|
17865
|
+
"es.math.sum-precise",
|
|
17310
17866
|
"es.math.tanh",
|
|
17311
17867
|
"es.math.to-string-tag",
|
|
17312
17868
|
"es.math.trunc",
|
|
@@ -17468,6 +18024,12 @@
|
|
|
17468
18024
|
"es.typed-array.to-sorted",
|
|
17469
18025
|
"es.typed-array.to-string",
|
|
17470
18026
|
"es.typed-array.with",
|
|
18027
|
+
"es.uint8-array.from-base64",
|
|
18028
|
+
"es.uint8-array.from-hex",
|
|
18029
|
+
"es.uint8-array.set-from-base64",
|
|
18030
|
+
"es.uint8-array.set-from-hex",
|
|
18031
|
+
"es.uint8-array.to-base64",
|
|
18032
|
+
"es.uint8-array.to-hex",
|
|
17471
18033
|
"es.unescape",
|
|
17472
18034
|
"es.weak-map",
|
|
17473
18035
|
"es.weak-set",
|
|
@@ -18345,6 +18907,7 @@
|
|
|
18345
18907
|
"es.object.to-string"
|
|
18346
18908
|
],
|
|
18347
18909
|
"core-js/stable/math": [
|
|
18910
|
+
"es.array.iterator",
|
|
18348
18911
|
"es.math.acosh",
|
|
18349
18912
|
"es.math.asinh",
|
|
18350
18913
|
"es.math.atanh",
|
|
@@ -18361,6 +18924,7 @@
|
|
|
18361
18924
|
"es.math.log2",
|
|
18362
18925
|
"es.math.sign",
|
|
18363
18926
|
"es.math.sinh",
|
|
18927
|
+
"es.math.sum-precise",
|
|
18364
18928
|
"es.math.tanh",
|
|
18365
18929
|
"es.math.to-string-tag",
|
|
18366
18930
|
"es.math.trunc"
|
|
@@ -18413,6 +18977,10 @@
|
|
|
18413
18977
|
"core-js/stable/math/sinh": [
|
|
18414
18978
|
"es.math.sinh"
|
|
18415
18979
|
],
|
|
18980
|
+
"core-js/stable/math/sum-precise": [
|
|
18981
|
+
"es.array.iterator",
|
|
18982
|
+
"es.math.sum-precise"
|
|
18983
|
+
],
|
|
18416
18984
|
"core-js/stable/math/tanh": [
|
|
18417
18985
|
"es.math.tanh"
|
|
18418
18986
|
],
|
|
@@ -19299,7 +19867,13 @@
|
|
|
19299
19867
|
"es.typed-array.to-reversed",
|
|
19300
19868
|
"es.typed-array.to-sorted",
|
|
19301
19869
|
"es.typed-array.to-string",
|
|
19302
|
-
"es.typed-array.with"
|
|
19870
|
+
"es.typed-array.with",
|
|
19871
|
+
"es.uint8-array.from-base64",
|
|
19872
|
+
"es.uint8-array.from-hex",
|
|
19873
|
+
"es.uint8-array.set-from-base64",
|
|
19874
|
+
"es.uint8-array.set-from-hex",
|
|
19875
|
+
"es.uint8-array.to-base64",
|
|
19876
|
+
"es.uint8-array.to-hex"
|
|
19303
19877
|
],
|
|
19304
19878
|
"core-js/stable/typed-array/at": [
|
|
19305
19879
|
"es.typed-array.at"
|
|
@@ -19368,7 +19942,13 @@
|
|
|
19368
19942
|
"es.typed-array.to-reversed",
|
|
19369
19943
|
"es.typed-array.to-sorted",
|
|
19370
19944
|
"es.typed-array.to-string",
|
|
19371
|
-
"es.typed-array.with"
|
|
19945
|
+
"es.typed-array.with",
|
|
19946
|
+
"es.uint8-array.from-base64",
|
|
19947
|
+
"es.uint8-array.from-hex",
|
|
19948
|
+
"es.uint8-array.set-from-base64",
|
|
19949
|
+
"es.uint8-array.set-from-hex",
|
|
19950
|
+
"es.uint8-array.to-base64",
|
|
19951
|
+
"es.uint8-array.to-hex"
|
|
19372
19952
|
],
|
|
19373
19953
|
"core-js/stable/typed-array/float64-array": [
|
|
19374
19954
|
"es.array-buffer.constructor",
|
|
@@ -19406,7 +19986,13 @@
|
|
|
19406
19986
|
"es.typed-array.to-reversed",
|
|
19407
19987
|
"es.typed-array.to-sorted",
|
|
19408
19988
|
"es.typed-array.to-string",
|
|
19409
|
-
"es.typed-array.with"
|
|
19989
|
+
"es.typed-array.with",
|
|
19990
|
+
"es.uint8-array.from-base64",
|
|
19991
|
+
"es.uint8-array.from-hex",
|
|
19992
|
+
"es.uint8-array.set-from-base64",
|
|
19993
|
+
"es.uint8-array.set-from-hex",
|
|
19994
|
+
"es.uint8-array.to-base64",
|
|
19995
|
+
"es.uint8-array.to-hex"
|
|
19410
19996
|
],
|
|
19411
19997
|
"core-js/stable/typed-array/for-each": [
|
|
19412
19998
|
"es.typed-array.for-each"
|
|
@@ -19414,6 +20000,12 @@
|
|
|
19414
20000
|
"core-js/stable/typed-array/from": [
|
|
19415
20001
|
"es.typed-array.from"
|
|
19416
20002
|
],
|
|
20003
|
+
"core-js/stable/typed-array/from-base64": [
|
|
20004
|
+
"es.uint8-array.from-base64"
|
|
20005
|
+
],
|
|
20006
|
+
"core-js/stable/typed-array/from-hex": [
|
|
20007
|
+
"es.uint8-array.from-hex"
|
|
20008
|
+
],
|
|
19417
20009
|
"core-js/stable/typed-array/includes": [
|
|
19418
20010
|
"es.typed-array.includes"
|
|
19419
20011
|
],
|
|
@@ -19456,7 +20048,13 @@
|
|
|
19456
20048
|
"es.typed-array.to-reversed",
|
|
19457
20049
|
"es.typed-array.to-sorted",
|
|
19458
20050
|
"es.typed-array.to-string",
|
|
19459
|
-
"es.typed-array.with"
|
|
20051
|
+
"es.typed-array.with",
|
|
20052
|
+
"es.uint8-array.from-base64",
|
|
20053
|
+
"es.uint8-array.from-hex",
|
|
20054
|
+
"es.uint8-array.set-from-base64",
|
|
20055
|
+
"es.uint8-array.set-from-hex",
|
|
20056
|
+
"es.uint8-array.to-base64",
|
|
20057
|
+
"es.uint8-array.to-hex"
|
|
19460
20058
|
],
|
|
19461
20059
|
"core-js/stable/typed-array/int32-array": [
|
|
19462
20060
|
"es.array-buffer.constructor",
|
|
@@ -19494,7 +20092,13 @@
|
|
|
19494
20092
|
"es.typed-array.to-reversed",
|
|
19495
20093
|
"es.typed-array.to-sorted",
|
|
19496
20094
|
"es.typed-array.to-string",
|
|
19497
|
-
"es.typed-array.with"
|
|
20095
|
+
"es.typed-array.with",
|
|
20096
|
+
"es.uint8-array.from-base64",
|
|
20097
|
+
"es.uint8-array.from-hex",
|
|
20098
|
+
"es.uint8-array.set-from-base64",
|
|
20099
|
+
"es.uint8-array.set-from-hex",
|
|
20100
|
+
"es.uint8-array.to-base64",
|
|
20101
|
+
"es.uint8-array.to-hex"
|
|
19498
20102
|
],
|
|
19499
20103
|
"core-js/stable/typed-array/int8-array": [
|
|
19500
20104
|
"es.array-buffer.constructor",
|
|
@@ -19532,7 +20136,13 @@
|
|
|
19532
20136
|
"es.typed-array.to-reversed",
|
|
19533
20137
|
"es.typed-array.to-sorted",
|
|
19534
20138
|
"es.typed-array.to-string",
|
|
19535
|
-
"es.typed-array.with"
|
|
20139
|
+
"es.typed-array.with",
|
|
20140
|
+
"es.uint8-array.from-base64",
|
|
20141
|
+
"es.uint8-array.from-hex",
|
|
20142
|
+
"es.uint8-array.set-from-base64",
|
|
20143
|
+
"es.uint8-array.set-from-hex",
|
|
20144
|
+
"es.uint8-array.to-base64",
|
|
20145
|
+
"es.uint8-array.to-hex"
|
|
19536
20146
|
],
|
|
19537
20147
|
"core-js/stable/typed-array/iterator": [
|
|
19538
20148
|
"es.object.to-string",
|
|
@@ -19584,7 +20194,13 @@
|
|
|
19584
20194
|
"es.typed-array.to-reversed",
|
|
19585
20195
|
"es.typed-array.to-sorted",
|
|
19586
20196
|
"es.typed-array.to-string",
|
|
19587
|
-
"es.typed-array.with"
|
|
20197
|
+
"es.typed-array.with",
|
|
20198
|
+
"es.uint8-array.from-base64",
|
|
20199
|
+
"es.uint8-array.from-hex",
|
|
20200
|
+
"es.uint8-array.set-from-base64",
|
|
20201
|
+
"es.uint8-array.set-from-hex",
|
|
20202
|
+
"es.uint8-array.to-base64",
|
|
20203
|
+
"es.uint8-array.to-hex"
|
|
19588
20204
|
],
|
|
19589
20205
|
"core-js/stable/typed-array/of": [
|
|
19590
20206
|
"es.typed-array.of"
|
|
@@ -19601,6 +20217,12 @@
|
|
|
19601
20217
|
"core-js/stable/typed-array/set": [
|
|
19602
20218
|
"es.typed-array.set"
|
|
19603
20219
|
],
|
|
20220
|
+
"core-js/stable/typed-array/set-from-base64": [
|
|
20221
|
+
"es.uint8-array.set-from-base64"
|
|
20222
|
+
],
|
|
20223
|
+
"core-js/stable/typed-array/set-from-hex": [
|
|
20224
|
+
"es.uint8-array.set-from-hex"
|
|
20225
|
+
],
|
|
19604
20226
|
"core-js/stable/typed-array/slice": [
|
|
19605
20227
|
"es.typed-array.slice"
|
|
19606
20228
|
],
|
|
@@ -19613,6 +20235,12 @@
|
|
|
19613
20235
|
"core-js/stable/typed-array/subarray": [
|
|
19614
20236
|
"es.typed-array.subarray"
|
|
19615
20237
|
],
|
|
20238
|
+
"core-js/stable/typed-array/to-base64": [
|
|
20239
|
+
"es.uint8-array.to-base64"
|
|
20240
|
+
],
|
|
20241
|
+
"core-js/stable/typed-array/to-hex": [
|
|
20242
|
+
"es.uint8-array.to-hex"
|
|
20243
|
+
],
|
|
19616
20244
|
"core-js/stable/typed-array/to-locale-string": [
|
|
19617
20245
|
"es.typed-array.to-locale-string"
|
|
19618
20246
|
],
|
|
@@ -19662,7 +20290,13 @@
|
|
|
19662
20290
|
"es.typed-array.to-reversed",
|
|
19663
20291
|
"es.typed-array.to-sorted",
|
|
19664
20292
|
"es.typed-array.to-string",
|
|
19665
|
-
"es.typed-array.with"
|
|
20293
|
+
"es.typed-array.with",
|
|
20294
|
+
"es.uint8-array.from-base64",
|
|
20295
|
+
"es.uint8-array.from-hex",
|
|
20296
|
+
"es.uint8-array.set-from-base64",
|
|
20297
|
+
"es.uint8-array.set-from-hex",
|
|
20298
|
+
"es.uint8-array.to-base64",
|
|
20299
|
+
"es.uint8-array.to-hex"
|
|
19666
20300
|
],
|
|
19667
20301
|
"core-js/stable/typed-array/uint32-array": [
|
|
19668
20302
|
"es.array-buffer.constructor",
|
|
@@ -19700,7 +20334,13 @@
|
|
|
19700
20334
|
"es.typed-array.to-reversed",
|
|
19701
20335
|
"es.typed-array.to-sorted",
|
|
19702
20336
|
"es.typed-array.to-string",
|
|
19703
|
-
"es.typed-array.with"
|
|
20337
|
+
"es.typed-array.with",
|
|
20338
|
+
"es.uint8-array.from-base64",
|
|
20339
|
+
"es.uint8-array.from-hex",
|
|
20340
|
+
"es.uint8-array.set-from-base64",
|
|
20341
|
+
"es.uint8-array.set-from-hex",
|
|
20342
|
+
"es.uint8-array.to-base64",
|
|
20343
|
+
"es.uint8-array.to-hex"
|
|
19704
20344
|
],
|
|
19705
20345
|
"core-js/stable/typed-array/uint8-array": [
|
|
19706
20346
|
"es.array-buffer.constructor",
|
|
@@ -19738,7 +20378,13 @@
|
|
|
19738
20378
|
"es.typed-array.to-reversed",
|
|
19739
20379
|
"es.typed-array.to-sorted",
|
|
19740
20380
|
"es.typed-array.to-string",
|
|
19741
|
-
"es.typed-array.with"
|
|
20381
|
+
"es.typed-array.with",
|
|
20382
|
+
"es.uint8-array.from-base64",
|
|
20383
|
+
"es.uint8-array.from-hex",
|
|
20384
|
+
"es.uint8-array.set-from-base64",
|
|
20385
|
+
"es.uint8-array.set-from-hex",
|
|
20386
|
+
"es.uint8-array.to-base64",
|
|
20387
|
+
"es.uint8-array.to-hex"
|
|
19742
20388
|
],
|
|
19743
20389
|
"core-js/stable/typed-array/uint8-clamped-array": [
|
|
19744
20390
|
"es.array-buffer.constructor",
|
|
@@ -19776,7 +20422,13 @@
|
|
|
19776
20422
|
"es.typed-array.to-reversed",
|
|
19777
20423
|
"es.typed-array.to-sorted",
|
|
19778
20424
|
"es.typed-array.to-string",
|
|
19779
|
-
"es.typed-array.with"
|
|
20425
|
+
"es.typed-array.with",
|
|
20426
|
+
"es.uint8-array.from-base64",
|
|
20427
|
+
"es.uint8-array.from-hex",
|
|
20428
|
+
"es.uint8-array.set-from-base64",
|
|
20429
|
+
"es.uint8-array.set-from-hex",
|
|
20430
|
+
"es.uint8-array.to-base64",
|
|
20431
|
+
"es.uint8-array.to-hex"
|
|
19780
20432
|
],
|
|
19781
20433
|
"core-js/stable/typed-array/values": [
|
|
19782
20434
|
"es.object.to-string",
|
|
@@ -19902,6 +20554,7 @@
|
|
|
19902
20554
|
"esnext.iterator.map",
|
|
19903
20555
|
"esnext.iterator.range",
|
|
19904
20556
|
"esnext.iterator.reduce",
|
|
20557
|
+
"esnext.iterator.sliding",
|
|
19905
20558
|
"esnext.iterator.some",
|
|
19906
20559
|
"esnext.iterator.take",
|
|
19907
20560
|
"esnext.iterator.to-array",
|
|
@@ -20130,6 +20783,7 @@
|
|
|
20130
20783
|
"esnext.iterator.map",
|
|
20131
20784
|
"esnext.iterator.range",
|
|
20132
20785
|
"esnext.iterator.reduce",
|
|
20786
|
+
"esnext.iterator.sliding",
|
|
20133
20787
|
"esnext.iterator.some",
|
|
20134
20788
|
"esnext.iterator.take",
|
|
20135
20789
|
"esnext.iterator.to-array",
|
|
@@ -20344,6 +20998,7 @@
|
|
|
20344
20998
|
"esnext.iterator.map",
|
|
20345
20999
|
"esnext.iterator.range",
|
|
20346
21000
|
"esnext.iterator.reduce",
|
|
21001
|
+
"esnext.iterator.sliding",
|
|
20347
21002
|
"esnext.iterator.some",
|
|
20348
21003
|
"esnext.iterator.take",
|
|
20349
21004
|
"esnext.iterator.to-array",
|
|
@@ -20534,6 +21189,7 @@
|
|
|
20534
21189
|
"esnext.iterator.map",
|
|
20535
21190
|
"esnext.iterator.range",
|
|
20536
21191
|
"esnext.iterator.reduce",
|
|
21192
|
+
"esnext.iterator.sliding",
|
|
20537
21193
|
"esnext.iterator.some",
|
|
20538
21194
|
"esnext.iterator.take",
|
|
20539
21195
|
"esnext.iterator.to-array",
|
|
@@ -20660,6 +21316,8 @@
|
|
|
20660
21316
|
"esnext.iterator.take",
|
|
20661
21317
|
"esnext.iterator.to-array",
|
|
20662
21318
|
"esnext.iterator.to-async",
|
|
21319
|
+
"esnext.iterator.zip",
|
|
21320
|
+
"esnext.iterator.zip-keyed",
|
|
20663
21321
|
"esnext.json.is-raw-json",
|
|
20664
21322
|
"esnext.json.parse",
|
|
20665
21323
|
"esnext.json.raw-json",
|
|
@@ -20746,6 +21404,7 @@
|
|
|
20746
21404
|
"esnext.function.metadata",
|
|
20747
21405
|
"esnext.global-this",
|
|
20748
21406
|
"esnext.iterator.constructor",
|
|
21407
|
+
"esnext.iterator.concat",
|
|
20749
21408
|
"esnext.iterator.dispose",
|
|
20750
21409
|
"esnext.iterator.drop",
|
|
20751
21410
|
"esnext.iterator.every",
|
|
@@ -20763,6 +21422,8 @@
|
|
|
20763
21422
|
"esnext.json.is-raw-json",
|
|
20764
21423
|
"esnext.json.parse",
|
|
20765
21424
|
"esnext.json.raw-json",
|
|
21425
|
+
"esnext.map.get-or-insert",
|
|
21426
|
+
"esnext.map.get-or-insert-computed",
|
|
20766
21427
|
"esnext.map.group-by",
|
|
20767
21428
|
"esnext.math.f16round",
|
|
20768
21429
|
"esnext.math.sum-precise",
|
|
@@ -20799,7 +21460,9 @@
|
|
|
20799
21460
|
"esnext.uint8-array.set-from-base64",
|
|
20800
21461
|
"esnext.uint8-array.set-from-hex",
|
|
20801
21462
|
"esnext.uint8-array.to-base64",
|
|
20802
|
-
"esnext.uint8-array.to-hex"
|
|
21463
|
+
"esnext.uint8-array.to-hex",
|
|
21464
|
+
"esnext.weak-map.get-or-insert",
|
|
21465
|
+
"esnext.weak-map.get-or-insert-computed"
|
|
20803
21466
|
],
|
|
20804
21467
|
"core-js/stage/4": [
|
|
20805
21468
|
"es.string.at-alternative",
|
|
@@ -20839,6 +21502,7 @@
|
|
|
20839
21502
|
"esnext.iterator.to-array",
|
|
20840
21503
|
"esnext.map.group-by",
|
|
20841
21504
|
"esnext.math.f16round",
|
|
21505
|
+
"esnext.math.sum-precise",
|
|
20842
21506
|
"esnext.object.has-own",
|
|
20843
21507
|
"esnext.object.group-by",
|
|
20844
21508
|
"esnext.promise.all-settled",
|
|
@@ -20864,7 +21528,13 @@
|
|
|
20864
21528
|
"esnext.typed-array.find-last-index",
|
|
20865
21529
|
"esnext.typed-array.to-reversed",
|
|
20866
21530
|
"esnext.typed-array.to-sorted",
|
|
20867
|
-
"esnext.typed-array.with"
|
|
21531
|
+
"esnext.typed-array.with",
|
|
21532
|
+
"esnext.uint8-array.from-base64",
|
|
21533
|
+
"esnext.uint8-array.from-hex",
|
|
21534
|
+
"esnext.uint8-array.set-from-base64",
|
|
21535
|
+
"esnext.uint8-array.set-from-hex",
|
|
21536
|
+
"esnext.uint8-array.to-base64",
|
|
21537
|
+
"esnext.uint8-array.to-hex"
|
|
20868
21538
|
],
|
|
20869
21539
|
"core-js/stage/pre": [
|
|
20870
21540
|
"es.map",
|
|
@@ -20940,6 +21610,7 @@
|
|
|
20940
21610
|
"esnext.iterator.map",
|
|
20941
21611
|
"esnext.iterator.range",
|
|
20942
21612
|
"esnext.iterator.reduce",
|
|
21613
|
+
"esnext.iterator.sliding",
|
|
20943
21614
|
"esnext.iterator.some",
|
|
20944
21615
|
"esnext.iterator.take",
|
|
20945
21616
|
"esnext.iterator.to-array",
|