Skip to content

Commit

Permalink
update Opera 115+ compat data mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Dec 11, 2024
1 parent 66ab426 commit 167136f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Fixed NodeJS version where `URL.parse` was added - 22.1 instead of 22.0
- Added [Deno 2.1](https://github.com/denoland/deno/releases/tag/v2.1.0) compat data mapping
- Added Electron 35 compat data mapping
- Updated Opera 115+ compat data mapping
- Added Opera Android [86](https://forums.opera.com/topic/75006/opera-for-android-86) and 87 compat data mapping

##### [3.39.0 - 2024.10.31](https://github.com/zloirock/core-js/releases/tag/v3.39.0)
Expand Down
3 changes: 2 additions & 1 deletion packages/core-js-compat/src/mapping.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ export default {
ChromeToOpera(chrome) {
return chrome <= 28 ? 15
: chrome <= 82 ? chrome - 13
: chrome - 14;
: chrome <= 129 ? chrome - 14
: chrome - 15;
},
ChromeToAndroid: [
[9, '3.0'],
Expand Down

0 comments on commit 167136f

Please sign in to comment.