Skip to content

Commit 361b0b4

Browse files
committed
mark .findLast methods family as supported from Chrome 97
https://v8.dev/features/finding-in-arrays#support
1 parent d6d2f45 commit 361b0b4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
## Changelog
22
##### Unreleased
3+
- `.findLast` methods family marked as supported [from Chrome 97](https://v8.dev/features/finding-in-arrays#support)
34
- Fixed inheritance of Electron compat data `web.` modules
45
- Fixed Safari 15.1 compat data (some features were not added)
56
- Added iOS Safari 15.1 compat data mapping

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1442,9 +1442,11 @@ export const data = {
14421442
'esnext.array.filter-reject': {
14431443
},
14441444
'esnext.array.find-last': {
1445+
chrome: '97',
14451446
safari: '15.4',
14461447
},
14471448
'esnext.array.find-last-index': {
1449+
chrome: '97',
14481450
safari: '15.4',
14491451
},
14501452
'esnext.array.group-by': {
@@ -1718,9 +1720,11 @@ export const data = {
17181720
'esnext.typed-array.filter-reject': {
17191721
},
17201722
'esnext.typed-array.find-last': {
1723+
chrome: '97',
17211724
safari: '15.4',
17221725
},
17231726
'esnext.typed-array.find-last-index': {
1727+
chrome: '97',
17241728
safari: '15.4',
17251729
},
17261730
'esnext.typed-array.group-by': {

0 commit comments

Comments
 (0)