core-js-compat 3.16.2 → 3.17.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/data.json +39 -0
- package/entries.json +139 -0
- package/modules-by-versions.json +6 -0
- package/modules.json +4 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ const {
|
|
|
7
7
|
} = require('core-js-compat')({
|
|
8
8
|
targets: '> 2.5%', // browserslist query or object of minimum environment versions to support
|
|
9
9
|
filter: /^(es|web)\./, // optional filter - string-prefix, regexp or list of modules
|
|
10
|
-
version: '3.
|
|
10
|
+
version: '3.17', // used `core-js` version, by default - the latest
|
|
11
11
|
});
|
|
12
12
|
|
|
13
13
|
console.log(targets);
|
|
@@ -92,9 +92,9 @@ require('core-js-compat/modules'); // => Array<ModuleName>
|
|
|
92
92
|
require('core-js-compat').modules; // => Array<ModuleName>
|
|
93
93
|
|
|
94
94
|
// the subset of modules which available in the passed `core-js` version:
|
|
95
|
-
require('core-js-compat/get-modules-list-for-target-version')('3.
|
|
95
|
+
require('core-js-compat/get-modules-list-for-target-version')('3.17'); // => Array<ModuleName>
|
|
96
96
|
// or
|
|
97
|
-
require('core-js-compat').getModulesListForTargetVersion('3.
|
|
97
|
+
require('core-js-compat').getModulesListForTargetVersion('3.17'); // => Array<ModuleName>
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
If you want to add new / update data about modules required for target engines, [follow this instruction](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md#updating-core-js-compat-data).
|
package/data.json
CHANGED
|
@@ -234,6 +234,16 @@
|
|
|
234
234
|
"safari": "14.0",
|
|
235
235
|
"samsung": "14.0"
|
|
236
236
|
},
|
|
237
|
+
"es.array.at": {
|
|
238
|
+
"android": "92",
|
|
239
|
+
"chrome": "92",
|
|
240
|
+
"deno": "1.12",
|
|
241
|
+
"edge": "92",
|
|
242
|
+
"electron": "14.0",
|
|
243
|
+
"firefox": "90",
|
|
244
|
+
"node": "16.6",
|
|
245
|
+
"opera": "78"
|
|
246
|
+
},
|
|
237
247
|
"es.array.concat": {
|
|
238
248
|
"android": "51",
|
|
239
249
|
"chrome": "51",
|
|
@@ -1618,6 +1628,15 @@
|
|
|
1618
1628
|
"safari": "9.0",
|
|
1619
1629
|
"samsung": "4.0"
|
|
1620
1630
|
},
|
|
1631
|
+
"es.object.has-own": {
|
|
1632
|
+
"android": "93",
|
|
1633
|
+
"chrome": "93",
|
|
1634
|
+
"deno": "1.13",
|
|
1635
|
+
"edge": "93",
|
|
1636
|
+
"electron": "14.0",
|
|
1637
|
+
"firefox": "92",
|
|
1638
|
+
"opera": "79"
|
|
1639
|
+
},
|
|
1621
1640
|
"es.object.is": {
|
|
1622
1641
|
"android": "4.1",
|
|
1623
1642
|
"chrome": "19",
|
|
@@ -2194,6 +2213,16 @@
|
|
|
2194
2213
|
"safari": "10.0",
|
|
2195
2214
|
"samsung": "5.0"
|
|
2196
2215
|
},
|
|
2216
|
+
"es.string.at-alternative": {
|
|
2217
|
+
"android": "92",
|
|
2218
|
+
"chrome": "92",
|
|
2219
|
+
"deno": "1.12",
|
|
2220
|
+
"edge": "92",
|
|
2221
|
+
"electron": "14.0",
|
|
2222
|
+
"firefox": "90",
|
|
2223
|
+
"node": "16.6",
|
|
2224
|
+
"opera": "78"
|
|
2225
|
+
},
|
|
2197
2226
|
"es.string.code-point-at": {
|
|
2198
2227
|
"android": "41",
|
|
2199
2228
|
"chrome": "41",
|
|
@@ -2814,6 +2843,16 @@
|
|
|
2814
2843
|
"safari": "14.0",
|
|
2815
2844
|
"samsung": "6.0"
|
|
2816
2845
|
},
|
|
2846
|
+
"es.typed-array.at": {
|
|
2847
|
+
"android": "92",
|
|
2848
|
+
"chrome": "92",
|
|
2849
|
+
"deno": "1.12",
|
|
2850
|
+
"edge": "92",
|
|
2851
|
+
"electron": "14.0",
|
|
2852
|
+
"firefox": "90",
|
|
2853
|
+
"node": "16.6",
|
|
2854
|
+
"opera": "78"
|
|
2855
|
+
},
|
|
2817
2856
|
"es.typed-array.copy-within": {
|
|
2818
2857
|
"android": "45",
|
|
2819
2858
|
"chrome": "45",
|
package/entries.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"es.symbol.to-string-tag",
|
|
17
17
|
"es.symbol.unscopables",
|
|
18
18
|
"es.aggregate-error",
|
|
19
|
+
"es.array.at",
|
|
19
20
|
"es.array.concat",
|
|
20
21
|
"es.array.copy-within",
|
|
21
22
|
"es.array.every",
|
|
@@ -108,6 +109,7 @@
|
|
|
108
109
|
"es.object.get-own-property-descriptors",
|
|
109
110
|
"es.object.get-own-property-names",
|
|
110
111
|
"es.object.get-prototype-of",
|
|
112
|
+
"es.object.has-own",
|
|
111
113
|
"es.object.is",
|
|
112
114
|
"es.object.is-extensible",
|
|
113
115
|
"es.object.is-frozen",
|
|
@@ -148,6 +150,7 @@
|
|
|
148
150
|
"es.regexp.test",
|
|
149
151
|
"es.regexp.to-string",
|
|
150
152
|
"es.set",
|
|
153
|
+
"es.string.at-alternative",
|
|
151
154
|
"es.string.code-point-at",
|
|
152
155
|
"es.string.ends-with",
|
|
153
156
|
"es.string.from-code-point",
|
|
@@ -190,6 +193,7 @@
|
|
|
190
193
|
"es.typed-array.uint8-clamped-array",
|
|
191
194
|
"es.typed-array.uint16-array",
|
|
192
195
|
"es.typed-array.uint32-array",
|
|
196
|
+
"es.typed-array.at",
|
|
193
197
|
"es.typed-array.copy-within",
|
|
194
198
|
"es.typed-array.every",
|
|
195
199
|
"es.typed-array.fill",
|
|
@@ -384,6 +388,7 @@
|
|
|
384
388
|
"es.symbol.to-string-tag",
|
|
385
389
|
"es.symbol.unscopables",
|
|
386
390
|
"es.aggregate-error",
|
|
391
|
+
"es.array.at",
|
|
387
392
|
"es.array.concat",
|
|
388
393
|
"es.array.copy-within",
|
|
389
394
|
"es.array.every",
|
|
@@ -476,6 +481,7 @@
|
|
|
476
481
|
"es.object.get-own-property-descriptors",
|
|
477
482
|
"es.object.get-own-property-names",
|
|
478
483
|
"es.object.get-prototype-of",
|
|
484
|
+
"es.object.has-own",
|
|
479
485
|
"es.object.is",
|
|
480
486
|
"es.object.is-extensible",
|
|
481
487
|
"es.object.is-frozen",
|
|
@@ -516,6 +522,7 @@
|
|
|
516
522
|
"es.regexp.test",
|
|
517
523
|
"es.regexp.to-string",
|
|
518
524
|
"es.set",
|
|
525
|
+
"es.string.at-alternative",
|
|
519
526
|
"es.string.code-point-at",
|
|
520
527
|
"es.string.ends-with",
|
|
521
528
|
"es.string.from-code-point",
|
|
@@ -558,6 +565,7 @@
|
|
|
558
565
|
"es.typed-array.uint8-clamped-array",
|
|
559
566
|
"es.typed-array.uint16-array",
|
|
560
567
|
"es.typed-array.uint32-array",
|
|
568
|
+
"es.typed-array.at",
|
|
561
569
|
"es.typed-array.copy-within",
|
|
562
570
|
"es.typed-array.every",
|
|
563
571
|
"es.typed-array.fill",
|
|
@@ -593,6 +601,7 @@
|
|
|
593
601
|
"es.string.iterator"
|
|
594
602
|
],
|
|
595
603
|
"core-js/es/array": [
|
|
604
|
+
"es.array.at",
|
|
596
605
|
"es.array.concat",
|
|
597
606
|
"es.array.copy-within",
|
|
598
607
|
"es.array.every",
|
|
@@ -641,6 +650,9 @@
|
|
|
641
650
|
"core-js/es/array-buffer/slice": [
|
|
642
651
|
"es.array-buffer.slice"
|
|
643
652
|
],
|
|
653
|
+
"core-js/es/array/at": [
|
|
654
|
+
"es.array.at"
|
|
655
|
+
],
|
|
644
656
|
"core-js/es/array/concat": [
|
|
645
657
|
"es.array.concat"
|
|
646
658
|
],
|
|
@@ -736,6 +748,7 @@
|
|
|
736
748
|
"es.object.to-string"
|
|
737
749
|
],
|
|
738
750
|
"core-js/es/array/virtual": [
|
|
751
|
+
"es.array.at",
|
|
739
752
|
"es.array.concat",
|
|
740
753
|
"es.array.copy-within",
|
|
741
754
|
"es.array.every",
|
|
@@ -764,6 +777,9 @@
|
|
|
764
777
|
"es.array.unscopables.flat-map",
|
|
765
778
|
"es.object.to-string"
|
|
766
779
|
],
|
|
780
|
+
"core-js/es/array/virtual/at": [
|
|
781
|
+
"es.array.at"
|
|
782
|
+
],
|
|
767
783
|
"core-js/es/array/virtual/concat": [
|
|
768
784
|
"es.array.concat"
|
|
769
785
|
],
|
|
@@ -921,6 +937,10 @@
|
|
|
921
937
|
"core-js/es/global-this": [
|
|
922
938
|
"es.global-this"
|
|
923
939
|
],
|
|
940
|
+
"core-js/es/instance/at": [
|
|
941
|
+
"es.array.at",
|
|
942
|
+
"es.string.at-alternative"
|
|
943
|
+
],
|
|
924
944
|
"core-js/es/instance/bind": [
|
|
925
945
|
"es.function.bind"
|
|
926
946
|
],
|
|
@@ -1219,6 +1239,7 @@
|
|
|
1219
1239
|
"es.object.get-own-property-descriptors",
|
|
1220
1240
|
"es.object.get-own-property-names",
|
|
1221
1241
|
"es.object.get-prototype-of",
|
|
1242
|
+
"es.object.has-own",
|
|
1222
1243
|
"es.object.is",
|
|
1223
1244
|
"es.object.is-extensible",
|
|
1224
1245
|
"es.object.is-frozen",
|
|
@@ -1276,6 +1297,9 @@
|
|
|
1276
1297
|
"core-js/es/object/get-prototype-of": [
|
|
1277
1298
|
"es.object.get-prototype-of"
|
|
1278
1299
|
],
|
|
1300
|
+
"core-js/es/object/has-own": [
|
|
1301
|
+
"es.object.has-own"
|
|
1302
|
+
],
|
|
1279
1303
|
"core-js/es/object/is": [
|
|
1280
1304
|
"es.object.is"
|
|
1281
1305
|
],
|
|
@@ -1475,6 +1499,7 @@
|
|
|
1475
1499
|
"core-js/es/string": [
|
|
1476
1500
|
"es.object.to-string",
|
|
1477
1501
|
"es.regexp.exec",
|
|
1502
|
+
"es.string.at-alternative",
|
|
1478
1503
|
"es.string.code-point-at",
|
|
1479
1504
|
"es.string.ends-with",
|
|
1480
1505
|
"es.string.from-code-point",
|
|
@@ -1512,6 +1537,9 @@
|
|
|
1512
1537
|
"core-js/es/string/anchor": [
|
|
1513
1538
|
"es.string.anchor"
|
|
1514
1539
|
],
|
|
1540
|
+
"core-js/es/string/at": [
|
|
1541
|
+
"es.string.at-alternative"
|
|
1542
|
+
],
|
|
1515
1543
|
"core-js/es/string/big": [
|
|
1516
1544
|
"es.string.big"
|
|
1517
1545
|
],
|
|
@@ -1626,6 +1654,7 @@
|
|
|
1626
1654
|
"core-js/es/string/virtual": [
|
|
1627
1655
|
"es.object.to-string",
|
|
1628
1656
|
"es.regexp.exec",
|
|
1657
|
+
"es.string.at-alternative",
|
|
1629
1658
|
"es.string.code-point-at",
|
|
1630
1659
|
"es.string.ends-with",
|
|
1631
1660
|
"es.string.includes",
|
|
@@ -1661,6 +1690,9 @@
|
|
|
1661
1690
|
"core-js/es/string/virtual/anchor": [
|
|
1662
1691
|
"es.string.anchor"
|
|
1663
1692
|
],
|
|
1693
|
+
"core-js/es/string/virtual/at": [
|
|
1694
|
+
"es.string.at-alternative"
|
|
1695
|
+
],
|
|
1664
1696
|
"core-js/es/string/virtual/big": [
|
|
1665
1697
|
"es.string.big"
|
|
1666
1698
|
],
|
|
@@ -1853,6 +1885,7 @@
|
|
|
1853
1885
|
"es.typed-array.uint8-clamped-array",
|
|
1854
1886
|
"es.typed-array.uint16-array",
|
|
1855
1887
|
"es.typed-array.uint32-array",
|
|
1888
|
+
"es.typed-array.at",
|
|
1856
1889
|
"es.typed-array.copy-within",
|
|
1857
1890
|
"es.typed-array.every",
|
|
1858
1891
|
"es.typed-array.fill",
|
|
@@ -1879,6 +1912,9 @@
|
|
|
1879
1912
|
"es.typed-array.to-locale-string",
|
|
1880
1913
|
"es.typed-array.to-string"
|
|
1881
1914
|
],
|
|
1915
|
+
"core-js/es/typed-array/at": [
|
|
1916
|
+
"es.typed-array.at"
|
|
1917
|
+
],
|
|
1882
1918
|
"core-js/es/typed-array/copy-within": [
|
|
1883
1919
|
"es.typed-array.copy-within"
|
|
1884
1920
|
],
|
|
@@ -1905,6 +1941,7 @@
|
|
|
1905
1941
|
"es.object.to-string",
|
|
1906
1942
|
"es.string.iterator",
|
|
1907
1943
|
"es.typed-array.float32-array",
|
|
1944
|
+
"es.typed-array.at",
|
|
1908
1945
|
"es.typed-array.copy-within",
|
|
1909
1946
|
"es.typed-array.every",
|
|
1910
1947
|
"es.typed-array.fill",
|
|
@@ -1935,6 +1972,7 @@
|
|
|
1935
1972
|
"es.object.to-string",
|
|
1936
1973
|
"es.string.iterator",
|
|
1937
1974
|
"es.typed-array.float64-array",
|
|
1975
|
+
"es.typed-array.at",
|
|
1938
1976
|
"es.typed-array.copy-within",
|
|
1939
1977
|
"es.typed-array.every",
|
|
1940
1978
|
"es.typed-array.fill",
|
|
@@ -1977,6 +2015,7 @@
|
|
|
1977
2015
|
"es.object.to-string",
|
|
1978
2016
|
"es.string.iterator",
|
|
1979
2017
|
"es.typed-array.int16-array",
|
|
2018
|
+
"es.typed-array.at",
|
|
1980
2019
|
"es.typed-array.copy-within",
|
|
1981
2020
|
"es.typed-array.every",
|
|
1982
2021
|
"es.typed-array.fill",
|
|
@@ -2007,6 +2046,7 @@
|
|
|
2007
2046
|
"es.object.to-string",
|
|
2008
2047
|
"es.string.iterator",
|
|
2009
2048
|
"es.typed-array.int32-array",
|
|
2049
|
+
"es.typed-array.at",
|
|
2010
2050
|
"es.typed-array.copy-within",
|
|
2011
2051
|
"es.typed-array.every",
|
|
2012
2052
|
"es.typed-array.fill",
|
|
@@ -2037,6 +2077,7 @@
|
|
|
2037
2077
|
"es.object.to-string",
|
|
2038
2078
|
"es.string.iterator",
|
|
2039
2079
|
"es.typed-array.int8-array",
|
|
2080
|
+
"es.typed-array.at",
|
|
2040
2081
|
"es.typed-array.copy-within",
|
|
2041
2082
|
"es.typed-array.every",
|
|
2042
2083
|
"es.typed-array.fill",
|
|
@@ -2083,6 +2124,7 @@
|
|
|
2083
2124
|
"core-js/es/typed-array/methods": [
|
|
2084
2125
|
"es.object.to-string",
|
|
2085
2126
|
"es.string.iterator",
|
|
2127
|
+
"es.typed-array.at",
|
|
2086
2128
|
"es.typed-array.copy-within",
|
|
2087
2129
|
"es.typed-array.every",
|
|
2088
2130
|
"es.typed-array.fill",
|
|
@@ -2146,6 +2188,7 @@
|
|
|
2146
2188
|
"es.object.to-string",
|
|
2147
2189
|
"es.string.iterator",
|
|
2148
2190
|
"es.typed-array.uint16-array",
|
|
2191
|
+
"es.typed-array.at",
|
|
2149
2192
|
"es.typed-array.copy-within",
|
|
2150
2193
|
"es.typed-array.every",
|
|
2151
2194
|
"es.typed-array.fill",
|
|
@@ -2176,6 +2219,7 @@
|
|
|
2176
2219
|
"es.object.to-string",
|
|
2177
2220
|
"es.string.iterator",
|
|
2178
2221
|
"es.typed-array.uint32-array",
|
|
2222
|
+
"es.typed-array.at",
|
|
2179
2223
|
"es.typed-array.copy-within",
|
|
2180
2224
|
"es.typed-array.every",
|
|
2181
2225
|
"es.typed-array.fill",
|
|
@@ -2206,6 +2250,7 @@
|
|
|
2206
2250
|
"es.object.to-string",
|
|
2207
2251
|
"es.string.iterator",
|
|
2208
2252
|
"es.typed-array.uint8-array",
|
|
2253
|
+
"es.typed-array.at",
|
|
2209
2254
|
"es.typed-array.copy-within",
|
|
2210
2255
|
"es.typed-array.every",
|
|
2211
2256
|
"es.typed-array.fill",
|
|
@@ -2236,6 +2281,7 @@
|
|
|
2236
2281
|
"es.object.to-string",
|
|
2237
2282
|
"es.string.iterator",
|
|
2238
2283
|
"es.typed-array.uint8-clamped-array",
|
|
2284
|
+
"es.typed-array.at",
|
|
2239
2285
|
"es.typed-array.copy-within",
|
|
2240
2286
|
"es.typed-array.every",
|
|
2241
2287
|
"es.typed-array.fill",
|
|
@@ -2296,6 +2342,7 @@
|
|
|
2296
2342
|
"es.symbol.to-string-tag",
|
|
2297
2343
|
"es.symbol.unscopables",
|
|
2298
2344
|
"es.aggregate-error",
|
|
2345
|
+
"es.array.at",
|
|
2299
2346
|
"es.array.concat",
|
|
2300
2347
|
"es.array.copy-within",
|
|
2301
2348
|
"es.array.every",
|
|
@@ -2388,6 +2435,7 @@
|
|
|
2388
2435
|
"es.object.get-own-property-descriptors",
|
|
2389
2436
|
"es.object.get-own-property-names",
|
|
2390
2437
|
"es.object.get-prototype-of",
|
|
2438
|
+
"es.object.has-own",
|
|
2391
2439
|
"es.object.is",
|
|
2392
2440
|
"es.object.is-extensible",
|
|
2393
2441
|
"es.object.is-frozen",
|
|
@@ -2428,6 +2476,7 @@
|
|
|
2428
2476
|
"es.regexp.test",
|
|
2429
2477
|
"es.regexp.to-string",
|
|
2430
2478
|
"es.set",
|
|
2479
|
+
"es.string.at-alternative",
|
|
2431
2480
|
"es.string.code-point-at",
|
|
2432
2481
|
"es.string.ends-with",
|
|
2433
2482
|
"es.string.from-code-point",
|
|
@@ -2470,6 +2519,7 @@
|
|
|
2470
2519
|
"es.typed-array.uint8-clamped-array",
|
|
2471
2520
|
"es.typed-array.uint16-array",
|
|
2472
2521
|
"es.typed-array.uint32-array",
|
|
2522
|
+
"es.typed-array.at",
|
|
2473
2523
|
"es.typed-array.copy-within",
|
|
2474
2524
|
"es.typed-array.every",
|
|
2475
2525
|
"es.typed-array.fill",
|
|
@@ -2655,6 +2705,7 @@
|
|
|
2655
2705
|
"web.dom-collections.iterator"
|
|
2656
2706
|
],
|
|
2657
2707
|
"core-js/features/array": [
|
|
2708
|
+
"es.array.at",
|
|
2658
2709
|
"es.array.concat",
|
|
2659
2710
|
"es.array.copy-within",
|
|
2660
2711
|
"es.array.every",
|
|
@@ -2715,6 +2766,7 @@
|
|
|
2715
2766
|
"es.array-buffer.slice"
|
|
2716
2767
|
],
|
|
2717
2768
|
"core-js/features/array/at": [
|
|
2769
|
+
"es.array.at",
|
|
2718
2770
|
"esnext.array.at"
|
|
2719
2771
|
],
|
|
2720
2772
|
"core-js/features/array/concat": [
|
|
@@ -2840,6 +2892,7 @@
|
|
|
2840
2892
|
"es.object.to-string"
|
|
2841
2893
|
],
|
|
2842
2894
|
"core-js/features/array/virtual": [
|
|
2895
|
+
"es.array.at",
|
|
2843
2896
|
"es.array.concat",
|
|
2844
2897
|
"es.array.copy-within",
|
|
2845
2898
|
"es.array.every",
|
|
@@ -2877,6 +2930,7 @@
|
|
|
2877
2930
|
"esnext.array.unique-by"
|
|
2878
2931
|
],
|
|
2879
2932
|
"core-js/features/array/virtual/at": [
|
|
2933
|
+
"es.array.at",
|
|
2880
2934
|
"esnext.array.at"
|
|
2881
2935
|
],
|
|
2882
2936
|
"core-js/features/array/virtual/concat": [
|
|
@@ -3085,9 +3139,11 @@
|
|
|
3085
3139
|
"esnext.async-iterator.to-array"
|
|
3086
3140
|
],
|
|
3087
3141
|
"core-js/features/bigint": [
|
|
3142
|
+
"es.object.to-string",
|
|
3088
3143
|
"esnext.bigint.range"
|
|
3089
3144
|
],
|
|
3090
3145
|
"core-js/features/bigint/range": [
|
|
3146
|
+
"es.object.to-string",
|
|
3091
3147
|
"esnext.bigint.range"
|
|
3092
3148
|
],
|
|
3093
3149
|
"core-js/features/clear-immediate": [
|
|
@@ -3190,6 +3246,8 @@
|
|
|
3190
3246
|
"esnext.global-this"
|
|
3191
3247
|
],
|
|
3192
3248
|
"core-js/features/instance/at": [
|
|
3249
|
+
"es.array.at",
|
|
3250
|
+
"es.string.at-alternative",
|
|
3193
3251
|
"esnext.array.at",
|
|
3194
3252
|
"esnext.string.at"
|
|
3195
3253
|
],
|
|
@@ -3701,6 +3759,7 @@
|
|
|
3701
3759
|
"es.number.parse-int",
|
|
3702
3760
|
"es.number.to-fixed",
|
|
3703
3761
|
"es.number.to-precision",
|
|
3762
|
+
"es.object.to-string",
|
|
3704
3763
|
"esnext.number.from-string",
|
|
3705
3764
|
"esnext.number.range"
|
|
3706
3765
|
],
|
|
@@ -3774,6 +3833,7 @@
|
|
|
3774
3833
|
"es.object.get-own-property-descriptors",
|
|
3775
3834
|
"es.object.get-own-property-names",
|
|
3776
3835
|
"es.object.get-prototype-of",
|
|
3836
|
+
"es.object.has-own",
|
|
3777
3837
|
"es.object.is",
|
|
3778
3838
|
"es.object.is-extensible",
|
|
3779
3839
|
"es.object.is-frozen",
|
|
@@ -3838,6 +3898,7 @@
|
|
|
3838
3898
|
"es.object.get-prototype-of"
|
|
3839
3899
|
],
|
|
3840
3900
|
"core-js/features/object/has-own": [
|
|
3901
|
+
"es.object.has-own",
|
|
3841
3902
|
"esnext.object.has-own"
|
|
3842
3903
|
],
|
|
3843
3904
|
"core-js/features/object/is": [
|
|
@@ -4232,6 +4293,7 @@
|
|
|
4232
4293
|
"core-js/features/string": [
|
|
4233
4294
|
"es.object.to-string",
|
|
4234
4295
|
"es.regexp.exec",
|
|
4296
|
+
"es.string.at-alternative",
|
|
4235
4297
|
"es.string.code-point-at",
|
|
4236
4298
|
"es.string.ends-with",
|
|
4237
4299
|
"es.string.from-code-point",
|
|
@@ -4274,6 +4336,7 @@
|
|
|
4274
4336
|
"es.string.anchor"
|
|
4275
4337
|
],
|
|
4276
4338
|
"core-js/features/string/at": [
|
|
4339
|
+
"es.string.at-alternative",
|
|
4277
4340
|
"esnext.string.at"
|
|
4278
4341
|
],
|
|
4279
4342
|
"core-js/features/string/big": [
|
|
@@ -4396,6 +4459,7 @@
|
|
|
4396
4459
|
"core-js/features/string/virtual": [
|
|
4397
4460
|
"es.object.to-string",
|
|
4398
4461
|
"es.regexp.exec",
|
|
4462
|
+
"es.string.at-alternative",
|
|
4399
4463
|
"es.string.code-point-at",
|
|
4400
4464
|
"es.string.ends-with",
|
|
4401
4465
|
"es.string.includes",
|
|
@@ -4436,6 +4500,7 @@
|
|
|
4436
4500
|
"es.string.anchor"
|
|
4437
4501
|
],
|
|
4438
4502
|
"core-js/features/string/virtual/at": [
|
|
4503
|
+
"es.string.at-alternative",
|
|
4439
4504
|
"esnext.string.at"
|
|
4440
4505
|
],
|
|
4441
4506
|
"core-js/features/string/virtual/big": [
|
|
@@ -4667,6 +4732,7 @@
|
|
|
4667
4732
|
"es.typed-array.uint8-clamped-array",
|
|
4668
4733
|
"es.typed-array.uint16-array",
|
|
4669
4734
|
"es.typed-array.uint32-array",
|
|
4735
|
+
"es.typed-array.at",
|
|
4670
4736
|
"es.typed-array.copy-within",
|
|
4671
4737
|
"es.typed-array.every",
|
|
4672
4738
|
"es.typed-array.fill",
|
|
@@ -4701,6 +4767,7 @@
|
|
|
4701
4767
|
"esnext.typed-array.unique-by"
|
|
4702
4768
|
],
|
|
4703
4769
|
"core-js/features/typed-array/at": [
|
|
4770
|
+
"es.typed-array.every",
|
|
4704
4771
|
"esnext.typed-array.at"
|
|
4705
4772
|
],
|
|
4706
4773
|
"core-js/features/typed-array/copy-within": [
|
|
@@ -4742,6 +4809,7 @@
|
|
|
4742
4809
|
"es.object.to-string",
|
|
4743
4810
|
"es.string.iterator",
|
|
4744
4811
|
"es.typed-array.float32-array",
|
|
4812
|
+
"es.typed-array.at",
|
|
4745
4813
|
"es.typed-array.copy-within",
|
|
4746
4814
|
"es.typed-array.every",
|
|
4747
4815
|
"es.typed-array.fill",
|
|
@@ -4780,6 +4848,7 @@
|
|
|
4780
4848
|
"es.object.to-string",
|
|
4781
4849
|
"es.string.iterator",
|
|
4782
4850
|
"es.typed-array.float64-array",
|
|
4851
|
+
"es.typed-array.at",
|
|
4783
4852
|
"es.typed-array.copy-within",
|
|
4784
4853
|
"es.typed-array.every",
|
|
4785
4854
|
"es.typed-array.fill",
|
|
@@ -4833,6 +4902,7 @@
|
|
|
4833
4902
|
"es.object.to-string",
|
|
4834
4903
|
"es.string.iterator",
|
|
4835
4904
|
"es.typed-array.int16-array",
|
|
4905
|
+
"es.typed-array.at",
|
|
4836
4906
|
"es.typed-array.copy-within",
|
|
4837
4907
|
"es.typed-array.every",
|
|
4838
4908
|
"es.typed-array.fill",
|
|
@@ -4871,6 +4941,7 @@
|
|
|
4871
4941
|
"es.object.to-string",
|
|
4872
4942
|
"es.string.iterator",
|
|
4873
4943
|
"es.typed-array.int32-array",
|
|
4944
|
+
"es.typed-array.at",
|
|
4874
4945
|
"es.typed-array.copy-within",
|
|
4875
4946
|
"es.typed-array.every",
|
|
4876
4947
|
"es.typed-array.fill",
|
|
@@ -4909,6 +4980,7 @@
|
|
|
4909
4980
|
"es.object.to-string",
|
|
4910
4981
|
"es.string.iterator",
|
|
4911
4982
|
"es.typed-array.int8-array",
|
|
4983
|
+
"es.typed-array.at",
|
|
4912
4984
|
"es.typed-array.copy-within",
|
|
4913
4985
|
"es.typed-array.every",
|
|
4914
4986
|
"es.typed-array.fill",
|
|
@@ -4963,6 +5035,7 @@
|
|
|
4963
5035
|
"es.map",
|
|
4964
5036
|
"es.object.to-string",
|
|
4965
5037
|
"es.string.iterator",
|
|
5038
|
+
"es.typed-array.at",
|
|
4966
5039
|
"es.typed-array.copy-within",
|
|
4967
5040
|
"es.typed-array.every",
|
|
4968
5041
|
"es.typed-array.fill",
|
|
@@ -5034,6 +5107,7 @@
|
|
|
5034
5107
|
"es.object.to-string",
|
|
5035
5108
|
"es.string.iterator",
|
|
5036
5109
|
"es.typed-array.uint16-array",
|
|
5110
|
+
"es.typed-array.at",
|
|
5037
5111
|
"es.typed-array.copy-within",
|
|
5038
5112
|
"es.typed-array.every",
|
|
5039
5113
|
"es.typed-array.fill",
|
|
@@ -5072,6 +5146,7 @@
|
|
|
5072
5146
|
"es.object.to-string",
|
|
5073
5147
|
"es.string.iterator",
|
|
5074
5148
|
"es.typed-array.uint32-array",
|
|
5149
|
+
"es.typed-array.at",
|
|
5075
5150
|
"es.typed-array.copy-within",
|
|
5076
5151
|
"es.typed-array.every",
|
|
5077
5152
|
"es.typed-array.fill",
|
|
@@ -5110,6 +5185,7 @@
|
|
|
5110
5185
|
"es.object.to-string",
|
|
5111
5186
|
"es.string.iterator",
|
|
5112
5187
|
"es.typed-array.uint8-array",
|
|
5188
|
+
"es.typed-array.at",
|
|
5113
5189
|
"es.typed-array.copy-within",
|
|
5114
5190
|
"es.typed-array.every",
|
|
5115
5191
|
"es.typed-array.fill",
|
|
@@ -5148,6 +5224,7 @@
|
|
|
5148
5224
|
"es.object.to-string",
|
|
5149
5225
|
"es.string.iterator",
|
|
5150
5226
|
"es.typed-array.uint8-clamped-array",
|
|
5227
|
+
"es.typed-array.at",
|
|
5151
5228
|
"es.typed-array.copy-within",
|
|
5152
5229
|
"es.typed-array.every",
|
|
5153
5230
|
"es.typed-array.fill",
|
|
@@ -5283,6 +5360,9 @@
|
|
|
5283
5360
|
"core-js/modules/es.array-buffer.slice": [
|
|
5284
5361
|
"es.array-buffer.slice"
|
|
5285
5362
|
],
|
|
5363
|
+
"core-js/modules/es.array.at": [
|
|
5364
|
+
"es.array.at"
|
|
5365
|
+
],
|
|
5286
5366
|
"core-js/modules/es.array.concat": [
|
|
5287
5367
|
"es.array.concat"
|
|
5288
5368
|
],
|
|
@@ -5550,6 +5630,9 @@
|
|
|
5550
5630
|
"core-js/modules/es.object.get-prototype-of": [
|
|
5551
5631
|
"es.object.get-prototype-of"
|
|
5552
5632
|
],
|
|
5633
|
+
"core-js/modules/es.object.has-own": [
|
|
5634
|
+
"es.object.has-own"
|
|
5635
|
+
],
|
|
5553
5636
|
"core-js/modules/es.object.is": [
|
|
5554
5637
|
"es.object.is"
|
|
5555
5638
|
],
|
|
@@ -5673,6 +5756,9 @@
|
|
|
5673
5756
|
"core-js/modules/es.string.anchor": [
|
|
5674
5757
|
"es.string.anchor"
|
|
5675
5758
|
],
|
|
5759
|
+
"core-js/modules/es.string.at-alternative": [
|
|
5760
|
+
"es.string.at-alternative"
|
|
5761
|
+
],
|
|
5676
5762
|
"core-js/modules/es.string.big": [
|
|
5677
5763
|
"es.string.big"
|
|
5678
5764
|
],
|
|
@@ -5814,6 +5900,9 @@
|
|
|
5814
5900
|
"core-js/modules/es.symbol.unscopables": [
|
|
5815
5901
|
"es.symbol.unscopables"
|
|
5816
5902
|
],
|
|
5903
|
+
"core-js/modules/es.typed-array.at": [
|
|
5904
|
+
"es.typed-array.at"
|
|
5905
|
+
],
|
|
5817
5906
|
"core-js/modules/es.typed-array.copy-within": [
|
|
5818
5907
|
"es.typed-array.copy-within"
|
|
5819
5908
|
],
|
|
@@ -6374,6 +6463,7 @@
|
|
|
6374
6463
|
],
|
|
6375
6464
|
"core-js/proposals": [
|
|
6376
6465
|
"es.map",
|
|
6466
|
+
"es.string.at-alternative",
|
|
6377
6467
|
"esnext.aggregate-error",
|
|
6378
6468
|
"esnext.array.at",
|
|
6379
6469
|
"esnext.array.filter-out",
|
|
@@ -6702,6 +6792,7 @@
|
|
|
6702
6792
|
"esnext.reflect.metadata"
|
|
6703
6793
|
],
|
|
6704
6794
|
"core-js/proposals/relative-indexing-method": [
|
|
6795
|
+
"es.string.at-alternative",
|
|
6705
6796
|
"esnext.array.at",
|
|
6706
6797
|
"esnext.typed-array.at"
|
|
6707
6798
|
],
|
|
@@ -6756,6 +6847,7 @@
|
|
|
6756
6847
|
"es.symbol.to-string-tag",
|
|
6757
6848
|
"es.symbol.unscopables",
|
|
6758
6849
|
"es.aggregate-error",
|
|
6850
|
+
"es.array.at",
|
|
6759
6851
|
"es.array.concat",
|
|
6760
6852
|
"es.array.copy-within",
|
|
6761
6853
|
"es.array.every",
|
|
@@ -6848,6 +6940,7 @@
|
|
|
6848
6940
|
"es.object.get-own-property-descriptors",
|
|
6849
6941
|
"es.object.get-own-property-names",
|
|
6850
6942
|
"es.object.get-prototype-of",
|
|
6943
|
+
"es.object.has-own",
|
|
6851
6944
|
"es.object.is",
|
|
6852
6945
|
"es.object.is-extensible",
|
|
6853
6946
|
"es.object.is-frozen",
|
|
@@ -6888,6 +6981,7 @@
|
|
|
6888
6981
|
"es.regexp.test",
|
|
6889
6982
|
"es.regexp.to-string",
|
|
6890
6983
|
"es.set",
|
|
6984
|
+
"es.string.at-alternative",
|
|
6891
6985
|
"es.string.code-point-at",
|
|
6892
6986
|
"es.string.ends-with",
|
|
6893
6987
|
"es.string.from-code-point",
|
|
@@ -6930,6 +7024,7 @@
|
|
|
6930
7024
|
"es.typed-array.uint8-clamped-array",
|
|
6931
7025
|
"es.typed-array.uint16-array",
|
|
6932
7026
|
"es.typed-array.uint32-array",
|
|
7027
|
+
"es.typed-array.at",
|
|
6933
7028
|
"es.typed-array.copy-within",
|
|
6934
7029
|
"es.typed-array.every",
|
|
6935
7030
|
"es.typed-array.fill",
|
|
@@ -6975,6 +7070,7 @@
|
|
|
6975
7070
|
"web.dom-collections.iterator"
|
|
6976
7071
|
],
|
|
6977
7072
|
"core-js/stable/array": [
|
|
7073
|
+
"es.array.at",
|
|
6978
7074
|
"es.array.concat",
|
|
6979
7075
|
"es.array.copy-within",
|
|
6980
7076
|
"es.array.every",
|
|
@@ -7023,6 +7119,9 @@
|
|
|
7023
7119
|
"core-js/stable/array-buffer/slice": [
|
|
7024
7120
|
"es.array-buffer.slice"
|
|
7025
7121
|
],
|
|
7122
|
+
"core-js/stable/array/at": [
|
|
7123
|
+
"es.array.at"
|
|
7124
|
+
],
|
|
7026
7125
|
"core-js/stable/array/concat": [
|
|
7027
7126
|
"es.array.concat"
|
|
7028
7127
|
],
|
|
@@ -7118,6 +7217,7 @@
|
|
|
7118
7217
|
"es.object.to-string"
|
|
7119
7218
|
],
|
|
7120
7219
|
"core-js/stable/array/virtual": [
|
|
7220
|
+
"es.array.at",
|
|
7121
7221
|
"es.array.concat",
|
|
7122
7222
|
"es.array.copy-within",
|
|
7123
7223
|
"es.array.every",
|
|
@@ -7146,6 +7246,9 @@
|
|
|
7146
7246
|
"es.array.unscopables.flat-map",
|
|
7147
7247
|
"es.object.to-string"
|
|
7148
7248
|
],
|
|
7249
|
+
"core-js/stable/array/virtual/at": [
|
|
7250
|
+
"es.array.at"
|
|
7251
|
+
],
|
|
7149
7252
|
"core-js/stable/array/virtual/concat": [
|
|
7150
7253
|
"es.array.concat"
|
|
7151
7254
|
],
|
|
@@ -7321,6 +7424,10 @@
|
|
|
7321
7424
|
"core-js/stable/global-this": [
|
|
7322
7425
|
"es.global-this"
|
|
7323
7426
|
],
|
|
7427
|
+
"core-js/stable/instance/at": [
|
|
7428
|
+
"es.array.at",
|
|
7429
|
+
"es.string.at-alternative"
|
|
7430
|
+
],
|
|
7324
7431
|
"core-js/stable/instance/bind": [
|
|
7325
7432
|
"es.function.bind"
|
|
7326
7433
|
],
|
|
@@ -7625,6 +7732,7 @@
|
|
|
7625
7732
|
"es.object.get-own-property-descriptors",
|
|
7626
7733
|
"es.object.get-own-property-names",
|
|
7627
7734
|
"es.object.get-prototype-of",
|
|
7735
|
+
"es.object.has-own",
|
|
7628
7736
|
"es.object.is",
|
|
7629
7737
|
"es.object.is-extensible",
|
|
7630
7738
|
"es.object.is-frozen",
|
|
@@ -7684,6 +7792,9 @@
|
|
|
7684
7792
|
"core-js/stable/object/get-prototype-of": [
|
|
7685
7793
|
"es.object.get-prototype-of"
|
|
7686
7794
|
],
|
|
7795
|
+
"core-js/stable/object/has-own": [
|
|
7796
|
+
"es.object.has-own"
|
|
7797
|
+
],
|
|
7687
7798
|
"core-js/stable/object/is": [
|
|
7688
7799
|
"es.object.is"
|
|
7689
7800
|
],
|
|
@@ -7898,6 +8009,7 @@
|
|
|
7898
8009
|
"core-js/stable/string": [
|
|
7899
8010
|
"es.object.to-string",
|
|
7900
8011
|
"es.regexp.exec",
|
|
8012
|
+
"es.string.at-alternative",
|
|
7901
8013
|
"es.string.code-point-at",
|
|
7902
8014
|
"es.string.ends-with",
|
|
7903
8015
|
"es.string.from-code-point",
|
|
@@ -7935,6 +8047,9 @@
|
|
|
7935
8047
|
"core-js/stable/string/anchor": [
|
|
7936
8048
|
"es.string.anchor"
|
|
7937
8049
|
],
|
|
8050
|
+
"core-js/stable/string/at": [
|
|
8051
|
+
"es.string.at-alternative"
|
|
8052
|
+
],
|
|
7938
8053
|
"core-js/stable/string/big": [
|
|
7939
8054
|
"es.string.big"
|
|
7940
8055
|
],
|
|
@@ -8049,6 +8164,7 @@
|
|
|
8049
8164
|
"core-js/stable/string/virtual": [
|
|
8050
8165
|
"es.object.to-string",
|
|
8051
8166
|
"es.regexp.exec",
|
|
8167
|
+
"es.string.at-alternative",
|
|
8052
8168
|
"es.string.code-point-at",
|
|
8053
8169
|
"es.string.ends-with",
|
|
8054
8170
|
"es.string.includes",
|
|
@@ -8084,6 +8200,9 @@
|
|
|
8084
8200
|
"core-js/stable/string/virtual/anchor": [
|
|
8085
8201
|
"es.string.anchor"
|
|
8086
8202
|
],
|
|
8203
|
+
"core-js/stable/string/virtual/at": [
|
|
8204
|
+
"es.string.at-alternative"
|
|
8205
|
+
],
|
|
8087
8206
|
"core-js/stable/string/virtual/big": [
|
|
8088
8207
|
"es.string.big"
|
|
8089
8208
|
],
|
|
@@ -8278,6 +8397,7 @@
|
|
|
8278
8397
|
"es.typed-array.uint8-clamped-array",
|
|
8279
8398
|
"es.typed-array.uint16-array",
|
|
8280
8399
|
"es.typed-array.uint32-array",
|
|
8400
|
+
"es.typed-array.at",
|
|
8281
8401
|
"es.typed-array.copy-within",
|
|
8282
8402
|
"es.typed-array.every",
|
|
8283
8403
|
"es.typed-array.fill",
|
|
@@ -8304,6 +8424,9 @@
|
|
|
8304
8424
|
"es.typed-array.to-locale-string",
|
|
8305
8425
|
"es.typed-array.to-string"
|
|
8306
8426
|
],
|
|
8427
|
+
"core-js/stable/typed-array/at": [
|
|
8428
|
+
"es.typed-array.at"
|
|
8429
|
+
],
|
|
8307
8430
|
"core-js/stable/typed-array/copy-within": [
|
|
8308
8431
|
"es.typed-array.copy-within"
|
|
8309
8432
|
],
|
|
@@ -8330,6 +8453,7 @@
|
|
|
8330
8453
|
"es.object.to-string",
|
|
8331
8454
|
"es.string.iterator",
|
|
8332
8455
|
"es.typed-array.float32-array",
|
|
8456
|
+
"es.typed-array.at",
|
|
8333
8457
|
"es.typed-array.copy-within",
|
|
8334
8458
|
"es.typed-array.every",
|
|
8335
8459
|
"es.typed-array.fill",
|
|
@@ -8360,6 +8484,7 @@
|
|
|
8360
8484
|
"es.object.to-string",
|
|
8361
8485
|
"es.string.iterator",
|
|
8362
8486
|
"es.typed-array.float64-array",
|
|
8487
|
+
"es.typed-array.at",
|
|
8363
8488
|
"es.typed-array.copy-within",
|
|
8364
8489
|
"es.typed-array.every",
|
|
8365
8490
|
"es.typed-array.fill",
|
|
@@ -8402,6 +8527,7 @@
|
|
|
8402
8527
|
"es.object.to-string",
|
|
8403
8528
|
"es.string.iterator",
|
|
8404
8529
|
"es.typed-array.int16-array",
|
|
8530
|
+
"es.typed-array.at",
|
|
8405
8531
|
"es.typed-array.copy-within",
|
|
8406
8532
|
"es.typed-array.every",
|
|
8407
8533
|
"es.typed-array.fill",
|
|
@@ -8432,6 +8558,7 @@
|
|
|
8432
8558
|
"es.object.to-string",
|
|
8433
8559
|
"es.string.iterator",
|
|
8434
8560
|
"es.typed-array.int32-array",
|
|
8561
|
+
"es.typed-array.at",
|
|
8435
8562
|
"es.typed-array.copy-within",
|
|
8436
8563
|
"es.typed-array.every",
|
|
8437
8564
|
"es.typed-array.fill",
|
|
@@ -8462,6 +8589,7 @@
|
|
|
8462
8589
|
"es.object.to-string",
|
|
8463
8590
|
"es.string.iterator",
|
|
8464
8591
|
"es.typed-array.int8-array",
|
|
8592
|
+
"es.typed-array.at",
|
|
8465
8593
|
"es.typed-array.copy-within",
|
|
8466
8594
|
"es.typed-array.every",
|
|
8467
8595
|
"es.typed-array.fill",
|
|
@@ -8508,6 +8636,7 @@
|
|
|
8508
8636
|
"core-js/stable/typed-array/methods": [
|
|
8509
8637
|
"es.object.to-string",
|
|
8510
8638
|
"es.string.iterator",
|
|
8639
|
+
"es.typed-array.at",
|
|
8511
8640
|
"es.typed-array.copy-within",
|
|
8512
8641
|
"es.typed-array.every",
|
|
8513
8642
|
"es.typed-array.fill",
|
|
@@ -8571,6 +8700,7 @@
|
|
|
8571
8700
|
"es.object.to-string",
|
|
8572
8701
|
"es.string.iterator",
|
|
8573
8702
|
"es.typed-array.uint16-array",
|
|
8703
|
+
"es.typed-array.at",
|
|
8574
8704
|
"es.typed-array.copy-within",
|
|
8575
8705
|
"es.typed-array.every",
|
|
8576
8706
|
"es.typed-array.fill",
|
|
@@ -8601,6 +8731,7 @@
|
|
|
8601
8731
|
"es.object.to-string",
|
|
8602
8732
|
"es.string.iterator",
|
|
8603
8733
|
"es.typed-array.uint32-array",
|
|
8734
|
+
"es.typed-array.at",
|
|
8604
8735
|
"es.typed-array.copy-within",
|
|
8605
8736
|
"es.typed-array.every",
|
|
8606
8737
|
"es.typed-array.fill",
|
|
@@ -8631,6 +8762,7 @@
|
|
|
8631
8762
|
"es.object.to-string",
|
|
8632
8763
|
"es.string.iterator",
|
|
8633
8764
|
"es.typed-array.uint8-array",
|
|
8765
|
+
"es.typed-array.at",
|
|
8634
8766
|
"es.typed-array.copy-within",
|
|
8635
8767
|
"es.typed-array.every",
|
|
8636
8768
|
"es.typed-array.fill",
|
|
@@ -8661,6 +8793,7 @@
|
|
|
8661
8793
|
"es.object.to-string",
|
|
8662
8794
|
"es.string.iterator",
|
|
8663
8795
|
"es.typed-array.uint8-clamped-array",
|
|
8796
|
+
"es.typed-array.at",
|
|
8664
8797
|
"es.typed-array.copy-within",
|
|
8665
8798
|
"es.typed-array.every",
|
|
8666
8799
|
"es.typed-array.fill",
|
|
@@ -8720,6 +8853,7 @@
|
|
|
8720
8853
|
],
|
|
8721
8854
|
"core-js/stage": [
|
|
8722
8855
|
"es.map",
|
|
8856
|
+
"es.string.at-alternative",
|
|
8723
8857
|
"esnext.aggregate-error",
|
|
8724
8858
|
"esnext.array.at",
|
|
8725
8859
|
"esnext.array.filter-out",
|
|
@@ -8866,6 +9000,7 @@
|
|
|
8866
9000
|
],
|
|
8867
9001
|
"core-js/stage/0": [
|
|
8868
9002
|
"es.map",
|
|
9003
|
+
"es.string.at-alternative",
|
|
8869
9004
|
"esnext.aggregate-error",
|
|
8870
9005
|
"esnext.array.at",
|
|
8871
9006
|
"esnext.array.filter-out",
|
|
@@ -9003,6 +9138,7 @@
|
|
|
9003
9138
|
],
|
|
9004
9139
|
"core-js/stage/1": [
|
|
9005
9140
|
"es.map",
|
|
9141
|
+
"es.string.at-alternative",
|
|
9006
9142
|
"esnext.aggregate-error",
|
|
9007
9143
|
"esnext.array.at",
|
|
9008
9144
|
"esnext.array.filter-out",
|
|
@@ -9131,6 +9267,7 @@
|
|
|
9131
9267
|
"esnext.weak-set.of"
|
|
9132
9268
|
],
|
|
9133
9269
|
"core-js/stage/2": [
|
|
9270
|
+
"es.string.at-alternative",
|
|
9134
9271
|
"esnext.aggregate-error",
|
|
9135
9272
|
"esnext.array.at",
|
|
9136
9273
|
"esnext.array.find-last",
|
|
@@ -9191,6 +9328,7 @@
|
|
|
9191
9328
|
"esnext.weak-map.upsert"
|
|
9192
9329
|
],
|
|
9193
9330
|
"core-js/stage/3": [
|
|
9331
|
+
"es.string.at-alternative",
|
|
9194
9332
|
"esnext.aggregate-error",
|
|
9195
9333
|
"esnext.array.at",
|
|
9196
9334
|
"esnext.array.find-last",
|
|
@@ -9217,6 +9355,7 @@
|
|
|
9217
9355
|
],
|
|
9218
9356
|
"core-js/stage/pre": [
|
|
9219
9357
|
"es.map",
|
|
9358
|
+
"es.string.at-alternative",
|
|
9220
9359
|
"esnext.aggregate-error",
|
|
9221
9360
|
"esnext.array.at",
|
|
9222
9361
|
"esnext.array.filter-out",
|
package/modules-by-versions.json
CHANGED
package/modules.json
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"es.symbol.to-string-tag",
|
|
16
16
|
"es.symbol.unscopables",
|
|
17
17
|
"es.aggregate-error",
|
|
18
|
+
"es.array.at",
|
|
18
19
|
"es.array.concat",
|
|
19
20
|
"es.array.copy-within",
|
|
20
21
|
"es.array.every",
|
|
@@ -107,6 +108,7 @@
|
|
|
107
108
|
"es.object.get-own-property-descriptors",
|
|
108
109
|
"es.object.get-own-property-names",
|
|
109
110
|
"es.object.get-prototype-of",
|
|
111
|
+
"es.object.has-own",
|
|
110
112
|
"es.object.is",
|
|
111
113
|
"es.object.is-extensible",
|
|
112
114
|
"es.object.is-frozen",
|
|
@@ -147,6 +149,7 @@
|
|
|
147
149
|
"es.regexp.test",
|
|
148
150
|
"es.regexp.to-string",
|
|
149
151
|
"es.set",
|
|
152
|
+
"es.string.at-alternative",
|
|
150
153
|
"es.string.code-point-at",
|
|
151
154
|
"es.string.ends-with",
|
|
152
155
|
"es.string.from-code-point",
|
|
@@ -189,6 +192,7 @@
|
|
|
189
192
|
"es.typed-array.uint8-clamped-array",
|
|
190
193
|
"es.typed-array.uint16-array",
|
|
191
194
|
"es.typed-array.uint32-array",
|
|
195
|
+
"es.typed-array.at",
|
|
192
196
|
"es.typed-array.copy-within",
|
|
193
197
|
"es.typed-array.every",
|
|
194
198
|
"es.typed-array.fill",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-js-compat",
|
|
3
3
|
"description": "core-js compat",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.17.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/zloirock/core-js.git",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"main": "index.js",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"browserslist": "^4.16.
|
|
12
|
+
"browserslist": "^4.16.8",
|
|
13
13
|
"semver": "7.0.0"
|
|
14
14
|
},
|
|
15
15
|
"funding": {
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"url": "https://opencollective.com/core-js"
|
|
18
18
|
},
|
|
19
19
|
"license": "MIT",
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "c526e7a00305a917fc697a9b87e64a82781f09f4"
|
|
21
21
|
}
|