Skip to content

Commit 69842a4

Browse files
committedMay 22, 2022
mark Array.prototype.includes as fixed in FF102
https://bugzilla.mozilla.org/show_bug.cgi?id=1767541
1 parent f6dfcc8 commit 69842a4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Changelog
22
##### Unreleased
33
- 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
45

56
##### [3.22.5 - 2022.05.10](https://github.com/zloirock/core-js/releases/tag/v3.22.5)
67
- Ensured that polyfilled constructors `.prototype` is non-writable

‎packages/core-js-compat/src/data.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ export const data = {
214214
'es.array.includes': {
215215
chrome: '53',
216216
edge: '14',
217-
// FF99+ broken on sparse arrays
218-
// firefox: '48',
217+
// FF99-101 broken on sparse arrays
218+
firefox: '102', // '48',
219219
safari: '10.0',
220220
},
221221
'es.array.index-of': {

0 commit comments

Comments
 (0)
Please sign in to comment.