File tree 2 files changed +3
-2
lines changed
packages/core-js-compat/src
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
##### Unreleased
3
3
- Fixed possible double call of ` ToNumber ` conversion on arguments of ` Math.{ fround, trunc } ` polyfills
4
+ - ` Array.prototype.includes ` marked as [ fixed] ( https://bugzilla.mozilla.org/show_bug.cgi?id=1767541 ) in FF102
4
5
5
6
##### [ 3.22.5 - 2022.05.10] ( https://github.com/zloirock/core-js/releases/tag/v3.22.5 )
6
7
- Ensured that polyfilled constructors ` .prototype ` is non-writable
Original file line number Diff line number Diff line change @@ -214,8 +214,8 @@ export const data = {
214
214
'es.array.includes' : {
215
215
chrome : '53' ,
216
216
edge : '14' ,
217
- // FF99+ broken on sparse arrays
218
- // firefox: '48',
217
+ // FF99-101 broken on sparse arrays
218
+ firefox : '102' , // '48',
219
219
safari : '10.0' ,
220
220
} ,
221
221
'es.array.index-of' : {
You can’t perform that action at this time.
0 commit comments