Skip to content

Commit 602e567

Browse files
committed
1 parent a52a60a commit 602e567

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Fixed detection of `@@species` support in `Promise` in some old engines
55
- `{ Array, %TypedArray% }.prototype.{ findLast, findLastIndex }` marked as shipped [in FF104](https://bugzilla.mozilla.org/show_bug.cgi?id=1775026)
66
- Added iOS Safari 15.6 compat data mapping
7+
- Fixed Opera 15 compat data mapping
78

89
##### [3.24.0 - 2022.07.25](https://github.com/zloirock/core-js/releases/tag/v3.24.0)
910
- Recent updates of the [iterator helpers proposal](https://github.com/tc39/proposal-iterator-helpers), [#1101](https://github.com/zloirock/core-js/issues/1101):

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,7 @@ export default {
150150
],
151151
// https://github.com/mdn/browser-compat-data/blob/main/browsers/opera.json
152152
ChromeToOpera(chrome) {
153-
return chrome <= 23 ? 15
154-
: chrome <= 29 ? 16
153+
return chrome <= 28 ? 15
155154
: chrome <= 82 ? chrome - 13
156155
: chrome - 14;
157156
},

0 commit comments

Comments
 (0)