core-js-compat 3.13.1 → 3.15.2

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/entries.json CHANGED
@@ -49,11 +49,15 @@
49
49
  "es.array-buffer.is-view",
50
50
  "es.array-buffer.slice",
51
51
  "es.data-view",
52
+ "es.date.get-year",
52
53
  "es.date.now",
54
+ "es.date.set-year",
55
+ "es.date.to-gmt-string",
53
56
  "es.date.to-iso-string",
54
57
  "es.date.to-json",
55
58
  "es.date.to-primitive",
56
59
  "es.date.to-string",
60
+ "es.escape",
57
61
  "es.function.bind",
58
62
  "es.function.has-instance",
59
63
  "es.function.name",
@@ -137,6 +141,7 @@
137
141
  "es.reflect.set-prototype-of",
138
142
  "es.reflect.to-string-tag",
139
143
  "es.regexp.constructor",
144
+ "es.regexp.dot-all",
140
145
  "es.regexp.exec",
141
146
  "es.regexp.flags",
142
147
  "es.regexp.sticky",
@@ -159,6 +164,7 @@
159
164
  "es.string.search",
160
165
  "es.string.split",
161
166
  "es.string.starts-with",
167
+ "es.string.substr",
162
168
  "es.string.trim",
163
169
  "es.string.trim-end",
164
170
  "es.string.trim-start",
@@ -209,6 +215,7 @@
209
215
  "es.typed-array.subarray",
210
216
  "es.typed-array.to-locale-string",
211
217
  "es.typed-array.to-string",
218
+ "es.unescape",
212
219
  "es.weak-map",
213
220
  "es.weak-set",
214
221
  "esnext.aggregate-error",
@@ -406,11 +413,15 @@
406
413
  "es.array-buffer.is-view",
407
414
  "es.array-buffer.slice",
408
415
  "es.data-view",
416
+ "es.date.get-year",
409
417
  "es.date.now",
418
+ "es.date.set-year",
419
+ "es.date.to-gmt-string",
410
420
  "es.date.to-iso-string",
411
421
  "es.date.to-json",
412
422
  "es.date.to-primitive",
413
423
  "es.date.to-string",
424
+ "es.escape",
414
425
  "es.function.bind",
415
426
  "es.function.has-instance",
416
427
  "es.function.name",
@@ -494,6 +505,7 @@
494
505
  "es.reflect.set-prototype-of",
495
506
  "es.reflect.to-string-tag",
496
507
  "es.regexp.constructor",
508
+ "es.regexp.dot-all",
497
509
  "es.regexp.exec",
498
510
  "es.regexp.flags",
499
511
  "es.regexp.sticky",
@@ -516,6 +528,7 @@
516
528
  "es.string.search",
517
529
  "es.string.split",
518
530
  "es.string.starts-with",
531
+ "es.string.substr",
519
532
  "es.string.trim",
520
533
  "es.string.trim-end",
521
534
  "es.string.trim-start",
@@ -566,6 +579,7 @@
566
579
  "es.typed-array.subarray",
567
580
  "es.typed-array.to-locale-string",
568
581
  "es.typed-array.to-string",
582
+ "es.unescape",
569
583
  "es.weak-map",
570
584
  "es.weak-set"
571
585
  ],
@@ -828,15 +842,27 @@
828
842
  "es.object.to-string"
829
843
  ],
830
844
  "core-js/es/date": [
845
+ "es.date.get-year",
831
846
  "es.date.now",
847
+ "es.date.set-year",
848
+ "es.date.to-gmt-string",
832
849
  "es.date.to-iso-string",
833
850
  "es.date.to-json",
834
851
  "es.date.to-primitive",
835
852
  "es.date.to-string"
836
853
  ],
854
+ "core-js/es/date/get-year": [
855
+ "es.date.get-year"
856
+ ],
837
857
  "core-js/es/date/now": [
838
858
  "es.date.now"
839
859
  ],
860
+ "core-js/es/date/set-year": [
861
+ "es.date.set-year"
862
+ ],
863
+ "core-js/es/date/to-gmt-string": [
864
+ "es.date.to-gmt-string"
865
+ ],
840
866
  "core-js/es/date/to-iso-string": [
841
867
  "es.date.to-iso-string",
842
868
  "es.date.to-json"
@@ -850,6 +876,9 @@
850
876
  "core-js/es/date/to-string": [
851
877
  "es.date.to-string"
852
878
  ],
879
+ "core-js/es/escape": [
880
+ "es.escape"
881
+ ],
853
882
  "core-js/es/function": [
854
883
  "es.function.bind",
855
884
  "es.function.has-instance",
@@ -1349,6 +1378,7 @@
1349
1378
  ],
1350
1379
  "core-js/es/regexp": [
1351
1380
  "es.regexp.constructor",
1381
+ "es.regexp.dot-all",
1352
1382
  "es.regexp.exec",
1353
1383
  "es.regexp.flags",
1354
1384
  "es.regexp.sticky",
@@ -1362,6 +1392,11 @@
1362
1392
  "core-js/es/regexp/constructor": [
1363
1393
  "es.regexp.constructor"
1364
1394
  ],
1395
+ "core-js/es/regexp/dot-all": [
1396
+ "es.regexp.constructor",
1397
+ "es.regexp.dot-all",
1398
+ "es.regexp.exec"
1399
+ ],
1365
1400
  "core-js/es/regexp/flags": [
1366
1401
  "es.regexp.flags"
1367
1402
  ],
@@ -1378,6 +1413,8 @@
1378
1413
  "es.string.split"
1379
1414
  ],
1380
1415
  "core-js/es/regexp/sticky": [
1416
+ "es.regexp.constructor",
1417
+ "es.regexp.exec",
1381
1418
  "es.regexp.sticky"
1382
1419
  ],
1383
1420
  "core-js/es/regexp/test": [
@@ -1411,6 +1448,7 @@
1411
1448
  "es.string.search",
1412
1449
  "es.string.split",
1413
1450
  "es.string.starts-with",
1451
+ "es.string.substr",
1414
1452
  "es.string.trim",
1415
1453
  "es.string.trim-end",
1416
1454
  "es.string.trim-start",
@@ -1516,6 +1554,9 @@
1516
1554
  "core-js/es/string/sub": [
1517
1555
  "es.string.sub"
1518
1556
  ],
1557
+ "core-js/es/string/substr": [
1558
+ "es.string.substr"
1559
+ ],
1519
1560
  "core-js/es/string/sup": [
1520
1561
  "es.string.sup"
1521
1562
  ],
@@ -1549,6 +1590,7 @@
1549
1590
  "es.string.search",
1550
1591
  "es.string.split",
1551
1592
  "es.string.starts-with",
1593
+ "es.string.substr",
1552
1594
  "es.string.trim",
1553
1595
  "es.string.trim-end",
1554
1596
  "es.string.trim-start",
@@ -1632,6 +1674,9 @@
1632
1674
  "core-js/es/string/virtual/sub": [
1633
1675
  "es.string.sub"
1634
1676
  ],
1677
+ "core-js/es/string/virtual/substr": [
1678
+ "es.string.substr"
1679
+ ],
1635
1680
  "core-js/es/string/virtual/sup": [
1636
1681
  "es.string.sup"
1637
1682
  ],
@@ -2143,6 +2188,9 @@
2143
2188
  "core-js/es/typed-array/values": [
2144
2189
  "es.typed-array.iterator"
2145
2190
  ],
2191
+ "core-js/es/unescape": [
2192
+ "es.unescape"
2193
+ ],
2146
2194
  "core-js/es/weak-map": [
2147
2195
  "es.object.to-string",
2148
2196
  "es.weak-map",
@@ -2203,11 +2251,15 @@
2203
2251
  "es.array-buffer.is-view",
2204
2252
  "es.array-buffer.slice",
2205
2253
  "es.data-view",
2254
+ "es.date.get-year",
2206
2255
  "es.date.now",
2256
+ "es.date.set-year",
2257
+ "es.date.to-gmt-string",
2207
2258
  "es.date.to-iso-string",
2208
2259
  "es.date.to-json",
2209
2260
  "es.date.to-primitive",
2210
2261
  "es.date.to-string",
2262
+ "es.escape",
2211
2263
  "es.function.bind",
2212
2264
  "es.function.has-instance",
2213
2265
  "es.function.name",
@@ -2291,6 +2343,7 @@
2291
2343
  "es.reflect.set-prototype-of",
2292
2344
  "es.reflect.to-string-tag",
2293
2345
  "es.regexp.constructor",
2346
+ "es.regexp.dot-all",
2294
2347
  "es.regexp.exec",
2295
2348
  "es.regexp.flags",
2296
2349
  "es.regexp.sticky",
@@ -2313,6 +2366,7 @@
2313
2366
  "es.string.search",
2314
2367
  "es.string.split",
2315
2368
  "es.string.starts-with",
2369
+ "es.string.substr",
2316
2370
  "es.string.trim",
2317
2371
  "es.string.trim-end",
2318
2372
  "es.string.trim-start",
@@ -2363,6 +2417,7 @@
2363
2417
  "es.typed-array.subarray",
2364
2418
  "es.typed-array.to-locale-string",
2365
2419
  "es.typed-array.to-string",
2420
+ "es.unescape",
2366
2421
  "es.weak-map",
2367
2422
  "es.weak-set",
2368
2423
  "esnext.aggregate-error",
@@ -2963,15 +3018,27 @@
2963
3018
  "es.object.to-string"
2964
3019
  ],
2965
3020
  "core-js/features/date": [
3021
+ "es.date.get-year",
2966
3022
  "es.date.now",
3023
+ "es.date.set-year",
3024
+ "es.date.to-gmt-string",
2967
3025
  "es.date.to-iso-string",
2968
3026
  "es.date.to-json",
2969
3027
  "es.date.to-primitive",
2970
3028
  "es.date.to-string"
2971
3029
  ],
3030
+ "core-js/features/date/get-year": [
3031
+ "es.date.get-year"
3032
+ ],
2972
3033
  "core-js/features/date/now": [
2973
3034
  "es.date.now"
2974
3035
  ],
3036
+ "core-js/features/date/set-year": [
3037
+ "es.date.set-year"
3038
+ ],
3039
+ "core-js/features/date/to-gmt-string": [
3040
+ "es.date.to-gmt-string"
3041
+ ],
2975
3042
  "core-js/features/date/to-iso-string": [
2976
3043
  "es.date.to-iso-string",
2977
3044
  "es.date.to-json"
@@ -2996,6 +3063,9 @@
2996
3063
  "core-js/features/dom-collections/iterator": [
2997
3064
  "web.dom-collections.iterator"
2998
3065
  ],
3066
+ "core-js/features/escape": [
3067
+ "es.escape"
3068
+ ],
2999
3069
  "core-js/features/function": [
3000
3070
  "es.function.bind",
3001
3071
  "es.function.has-instance",
@@ -3880,6 +3950,7 @@
3880
3950
  ],
3881
3951
  "core-js/features/regexp": [
3882
3952
  "es.regexp.constructor",
3953
+ "es.regexp.dot-all",
3883
3954
  "es.regexp.exec",
3884
3955
  "es.regexp.flags",
3885
3956
  "es.regexp.sticky",
@@ -3893,6 +3964,11 @@
3893
3964
  "core-js/features/regexp/constructor": [
3894
3965
  "es.regexp.constructor"
3895
3966
  ],
3967
+ "core-js/features/regexp/dot-all": [
3968
+ "es.regexp.constructor",
3969
+ "es.regexp.dot-all",
3970
+ "es.regexp.exec"
3971
+ ],
3896
3972
  "core-js/features/regexp/flags": [
3897
3973
  "es.regexp.flags"
3898
3974
  ],
@@ -3909,6 +3985,8 @@
3909
3985
  "es.string.split"
3910
3986
  ],
3911
3987
  "core-js/features/regexp/sticky": [
3988
+ "es.regexp.constructor",
3989
+ "es.regexp.exec",
3912
3990
  "es.regexp.sticky"
3913
3991
  ],
3914
3992
  "core-js/features/regexp/test": [
@@ -4053,6 +4131,7 @@
4053
4131
  "es.string.search",
4054
4132
  "es.string.split",
4055
4133
  "es.string.starts-with",
4134
+ "es.string.substr",
4056
4135
  "es.string.trim",
4057
4136
  "es.string.trim-end",
4058
4137
  "es.string.trim-start",
@@ -4170,6 +4249,9 @@
4170
4249
  "core-js/features/string/sub": [
4171
4250
  "es.string.sub"
4172
4251
  ],
4252
+ "core-js/features/string/substr": [
4253
+ "es.string.substr"
4254
+ ],
4173
4255
  "core-js/features/string/sup": [
4174
4256
  "es.string.sup"
4175
4257
  ],
@@ -4203,6 +4285,7 @@
4203
4285
  "es.string.search",
4204
4286
  "es.string.split",
4205
4287
  "es.string.starts-with",
4288
+ "es.string.substr",
4206
4289
  "es.string.trim",
4207
4290
  "es.string.trim-end",
4208
4291
  "es.string.trim-start",
@@ -4298,6 +4381,9 @@
4298
4381
  "core-js/features/string/virtual/sub": [
4299
4382
  "es.string.sub"
4300
4383
  ],
4384
+ "core-js/features/string/virtual/substr": [
4385
+ "es.string.substr"
4386
+ ],
4301
4387
  "core-js/features/string/virtual/sup": [
4302
4388
  "es.string.sup"
4303
4389
  ],
@@ -4831,6 +4917,9 @@
4831
4917
  "core-js/features/typed-array/values": [
4832
4918
  "es.typed-array.iterator"
4833
4919
  ],
4920
+ "core-js/features/unescape": [
4921
+ "es.unescape"
4922
+ ],
4834
4923
  "core-js/features/url": [
4835
4924
  "web.url",
4836
4925
  "web.url.to-json",
@@ -5007,9 +5096,18 @@
5007
5096
  "core-js/modules/es.data-view": [
5008
5097
  "es.data-view"
5009
5098
  ],
5099
+ "core-js/modules/es.date.get-year": [
5100
+ "es.date.get-year"
5101
+ ],
5010
5102
  "core-js/modules/es.date.now": [
5011
5103
  "es.date.now"
5012
5104
  ],
5105
+ "core-js/modules/es.date.set-year": [
5106
+ "es.date.set-year"
5107
+ ],
5108
+ "core-js/modules/es.date.to-gmt-string": [
5109
+ "es.date.to-gmt-string"
5110
+ ],
5013
5111
  "core-js/modules/es.date.to-iso-string": [
5014
5112
  "es.date.to-iso-string"
5015
5113
  ],
@@ -5022,6 +5120,9 @@
5022
5120
  "core-js/modules/es.date.to-string": [
5023
5121
  "es.date.to-string"
5024
5122
  ],
5123
+ "core-js/modules/es.escape": [
5124
+ "es.escape"
5125
+ ],
5025
5126
  "core-js/modules/es.function.bind": [
5026
5127
  "es.function.bind"
5027
5128
  ],
@@ -5271,6 +5372,9 @@
5271
5372
  "core-js/modules/es.regexp.constructor": [
5272
5373
  "es.regexp.constructor"
5273
5374
  ],
5375
+ "core-js/modules/es.regexp.dot-all": [
5376
+ "es.regexp.dot-all"
5377
+ ],
5274
5378
  "core-js/modules/es.regexp.exec": [
5275
5379
  "es.regexp.exec"
5276
5380
  ],
@@ -5373,6 +5477,9 @@
5373
5477
  "core-js/modules/es.string.sub": [
5374
5478
  "es.string.sub"
5375
5479
  ],
5480
+ "core-js/modules/es.string.substr": [
5481
+ "es.string.substr"
5482
+ ],
5376
5483
  "core-js/modules/es.string.sup": [
5377
5484
  "es.string.sup"
5378
5485
  ],
@@ -5532,6 +5639,9 @@
5532
5639
  "core-js/modules/es.typed-array.uint8-clamped-array": [
5533
5640
  "es.typed-array.uint8-clamped-array"
5534
5641
  ],
5642
+ "core-js/modules/es.unescape": [
5643
+ "es.unescape"
5644
+ ],
5535
5645
  "core-js/modules/es.weak-map": [
5536
5646
  "es.weak-map"
5537
5647
  ],
@@ -6380,11 +6490,15 @@
6380
6490
  "es.array-buffer.is-view",
6381
6491
  "es.array-buffer.slice",
6382
6492
  "es.data-view",
6493
+ "es.date.get-year",
6383
6494
  "es.date.now",
6495
+ "es.date.set-year",
6496
+ "es.date.to-gmt-string",
6384
6497
  "es.date.to-iso-string",
6385
6498
  "es.date.to-json",
6386
6499
  "es.date.to-primitive",
6387
6500
  "es.date.to-string",
6501
+ "es.escape",
6388
6502
  "es.function.bind",
6389
6503
  "es.function.has-instance",
6390
6504
  "es.function.name",
@@ -6468,6 +6582,7 @@
6468
6582
  "es.reflect.set-prototype-of",
6469
6583
  "es.reflect.to-string-tag",
6470
6584
  "es.regexp.constructor",
6585
+ "es.regexp.dot-all",
6471
6586
  "es.regexp.exec",
6472
6587
  "es.regexp.flags",
6473
6588
  "es.regexp.sticky",
@@ -6490,6 +6605,7 @@
6490
6605
  "es.string.search",
6491
6606
  "es.string.split",
6492
6607
  "es.string.starts-with",
6608
+ "es.string.substr",
6493
6609
  "es.string.trim",
6494
6610
  "es.string.trim-end",
6495
6611
  "es.string.trim-start",
@@ -6540,6 +6656,7 @@
6540
6656
  "es.typed-array.subarray",
6541
6657
  "es.typed-array.to-locale-string",
6542
6658
  "es.typed-array.to-string",
6659
+ "es.unescape",
6543
6660
  "es.weak-map",
6544
6661
  "es.weak-set",
6545
6662
  "web.dom-collections.for-each",
@@ -6811,15 +6928,27 @@
6811
6928
  "es.object.to-string"
6812
6929
  ],
6813
6930
  "core-js/stable/date": [
6931
+ "es.date.get-year",
6814
6932
  "es.date.now",
6933
+ "es.date.set-year",
6934
+ "es.date.to-gmt-string",
6815
6935
  "es.date.to-iso-string",
6816
6936
  "es.date.to-json",
6817
6937
  "es.date.to-primitive",
6818
6938
  "es.date.to-string"
6819
6939
  ],
6940
+ "core-js/stable/date/get-year": [
6941
+ "es.date.get-year"
6942
+ ],
6820
6943
  "core-js/stable/date/now": [
6821
6944
  "es.date.now"
6822
6945
  ],
6946
+ "core-js/stable/date/set-year": [
6947
+ "es.date.set-year"
6948
+ ],
6949
+ "core-js/stable/date/to-gmt-string": [
6950
+ "es.date.to-gmt-string"
6951
+ ],
6823
6952
  "core-js/stable/date/to-iso-string": [
6824
6953
  "es.date.to-iso-string",
6825
6954
  "es.date.to-json"
@@ -6844,6 +6973,9 @@
6844
6973
  "core-js/stable/dom-collections/iterator": [
6845
6974
  "web.dom-collections.iterator"
6846
6975
  ],
6976
+ "core-js/stable/escape": [
6977
+ "es.escape"
6978
+ ],
6847
6979
  "core-js/stable/function": [
6848
6980
  "es.function.bind",
6849
6981
  "es.function.has-instance",
@@ -7350,6 +7482,7 @@
7350
7482
  ],
7351
7483
  "core-js/stable/regexp": [
7352
7484
  "es.regexp.constructor",
7485
+ "es.regexp.dot-all",
7353
7486
  "es.regexp.exec",
7354
7487
  "es.regexp.flags",
7355
7488
  "es.regexp.sticky",
@@ -7363,6 +7496,11 @@
7363
7496
  "core-js/stable/regexp/constructor": [
7364
7497
  "es.regexp.constructor"
7365
7498
  ],
7499
+ "core-js/stable/regexp/dot-all": [
7500
+ "es.regexp.constructor",
7501
+ "es.regexp.dot-all",
7502
+ "es.regexp.exec"
7503
+ ],
7366
7504
  "core-js/stable/regexp/flags": [
7367
7505
  "es.regexp.flags"
7368
7506
  ],
@@ -7379,6 +7517,8 @@
7379
7517
  "es.string.split"
7380
7518
  ],
7381
7519
  "core-js/stable/regexp/sticky": [
7520
+ "es.regexp.constructor",
7521
+ "es.regexp.exec",
7382
7522
  "es.regexp.sticky"
7383
7523
  ],
7384
7524
  "core-js/stable/regexp/test": [
@@ -7421,6 +7561,7 @@
7421
7561
  "es.string.search",
7422
7562
  "es.string.split",
7423
7563
  "es.string.starts-with",
7564
+ "es.string.substr",
7424
7565
  "es.string.trim",
7425
7566
  "es.string.trim-end",
7426
7567
  "es.string.trim-start",
@@ -7526,6 +7667,9 @@
7526
7667
  "core-js/stable/string/sub": [
7527
7668
  "es.string.sub"
7528
7669
  ],
7670
+ "core-js/stable/string/substr": [
7671
+ "es.string.substr"
7672
+ ],
7529
7673
  "core-js/stable/string/sup": [
7530
7674
  "es.string.sup"
7531
7675
  ],
@@ -7559,6 +7703,7 @@
7559
7703
  "es.string.search",
7560
7704
  "es.string.split",
7561
7705
  "es.string.starts-with",
7706
+ "es.string.substr",
7562
7707
  "es.string.trim",
7563
7708
  "es.string.trim-end",
7564
7709
  "es.string.trim-start",
@@ -7642,6 +7787,9 @@
7642
7787
  "core-js/stable/string/virtual/sub": [
7643
7788
  "es.string.sub"
7644
7789
  ],
7790
+ "core-js/stable/string/virtual/substr": [
7791
+ "es.string.substr"
7792
+ ],
7645
7793
  "core-js/stable/string/virtual/sup": [
7646
7794
  "es.string.sup"
7647
7795
  ],
@@ -8125,6 +8273,9 @@
8125
8273
  "core-js/stable/typed-array/values": [
8126
8274
  "es.typed-array.iterator"
8127
8275
  ],
8276
+ "core-js/stable/unescape": [
8277
+ "es.unescape"
8278
+ ],
8128
8279
  "core-js/stable/url": [
8129
8280
  "web.url",
8130
8281
  "web.url.to-json",
@@ -377,5 +377,14 @@
377
377
  "3.12": [
378
378
  "esnext.symbol.matcher",
379
379
  "esnext.symbol.metadata"
380
+ ],
381
+ "3.15": [
382
+ "es.date.get-year",
383
+ "es.date.set-year",
384
+ "es.date.to-gmt-string",
385
+ "es.escape",
386
+ "es.regexp.dot-all",
387
+ "es.string.substr",
388
+ "es.unescape"
380
389
  ]
381
390
  }
package/modules.json CHANGED
@@ -48,11 +48,15 @@
48
48
  "es.array-buffer.is-view",
49
49
  "es.array-buffer.slice",
50
50
  "es.data-view",
51
+ "es.date.get-year",
51
52
  "es.date.now",
53
+ "es.date.set-year",
54
+ "es.date.to-gmt-string",
52
55
  "es.date.to-iso-string",
53
56
  "es.date.to-json",
54
57
  "es.date.to-primitive",
55
58
  "es.date.to-string",
59
+ "es.escape",
56
60
  "es.function.bind",
57
61
  "es.function.has-instance",
58
62
  "es.function.name",
@@ -136,6 +140,7 @@
136
140
  "es.reflect.set-prototype-of",
137
141
  "es.reflect.to-string-tag",
138
142
  "es.regexp.constructor",
143
+ "es.regexp.dot-all",
139
144
  "es.regexp.exec",
140
145
  "es.regexp.flags",
141
146
  "es.regexp.sticky",
@@ -158,6 +163,7 @@
158
163
  "es.string.search",
159
164
  "es.string.split",
160
165
  "es.string.starts-with",
166
+ "es.string.substr",
161
167
  "es.string.trim",
162
168
  "es.string.trim-end",
163
169
  "es.string.trim-start",
@@ -208,6 +214,7 @@
208
214
  "es.typed-array.subarray",
209
215
  "es.typed-array.to-locale-string",
210
216
  "es.typed-array.to-string",
217
+ "es.unescape",
211
218
  "es.weak-map",
212
219
  "es.weak-set",
213
220
  "esnext.aggregate-error",
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.13.1",
4
+ "version": "3.15.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/zloirock/core-js.git",
@@ -17,5 +17,5 @@
17
17
  "url": "https://opencollective.com/core-js"
18
18
  },
19
19
  "license": "MIT",
20
- "gitHead": "a05c21cbf99ccb39b75746f3f65cbb91ef80d697"
20
+ "gitHead": "ea6ee013f5960f859d90e4136e91b035560ba72e"
21
21
  }
package/targets-parser.js CHANGED
@@ -23,6 +23,7 @@ const validTargets = new Set([
23
23
  'opera',
24
24
  'opera_mobile',
25
25
  'phantom',
26
+ 'rhino',
26
27
  'safari',
27
28
  'samsung',
28
29
  ]);