Skip to content

Commit

Permalink
mark .findLast methods family as supported from Chrome 97
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Oct 31, 2021
1 parent d6d2f45 commit 361b0b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Changelog
##### Unreleased
- `.findLast` methods family marked as supported [from Chrome 97](https://v8.dev/features/finding-in-arrays#support)
- Fixed inheritance of Electron compat data `web.` modules
- Fixed Safari 15.1 compat data (some features were not added)
- Added iOS Safari 15.1 compat data mapping
Expand Down
4 changes: 4 additions & 0 deletions packages/core-js-compat/src/data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1442,9 +1442,11 @@ export const data = {
'esnext.array.filter-reject': {
},
'esnext.array.find-last': {
chrome: '97',
safari: '15.4',
},
'esnext.array.find-last-index': {
chrome: '97',
safari: '15.4',
},
'esnext.array.group-by': {
Expand Down Expand Up @@ -1718,9 +1720,11 @@ export const data = {
'esnext.typed-array.filter-reject': {
},
'esnext.typed-array.find-last': {
chrome: '97',
safari: '15.4',
},
'esnext.typed-array.find-last-index': {
chrome: '97',
safari: '15.4',
},
'esnext.typed-array.group-by': {
Expand Down

0 comments on commit 361b0b4

Please sign in to comment.