Skip to content

Commit

Permalink
mark Array.prototype.includes as fixed in FF102
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed May 22, 2022
1 parent f6dfcc8 commit 69842a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Changelog
##### Unreleased
- Fixed possible double call of `ToNumber` conversion on arguments of `Math.{ fround, trunc }` polyfills
- `Array.prototype.includes` marked as [fixed](https://bugzilla.mozilla.org/show_bug.cgi?id=1767541) in FF102

##### [3.22.5 - 2022.05.10](https://github.com/zloirock/core-js/releases/tag/v3.22.5)
- Ensured that polyfilled constructors `.prototype` is non-writable
Expand Down
4 changes: 2 additions & 2 deletions packages/core-js-compat/src/data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ export const data = {
'es.array.includes': {
chrome: '53',
edge: '14',
// FF99+ broken on sparse arrays
// firefox: '48',
// FF99-101 broken on sparse arrays
firefox: '102', // '48',
safari: '10.0',
},
'es.array.index-of': {
Expand Down

0 comments on commit 69842a4

Please sign in to comment.