Skip to content

Commit

Permalink
V8 will not ship Array.prototype.{ group, groupToMap } in V8 ~ Chro…
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Nov 7, 2022
1 parent f7f5189 commit fc44490
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,7 @@
##### Unreleased
- Disabled forced replacing of `Array.fromAsync` since it's on Stage 3
- Avoiding a check of the target in the internal `function-uncurry-this` helper where it's not required
- V8 will not ship `Array.prototype.{ group, groupToMap }` in V8 ~ Chromium 108, [proposal-array-grouping/44](https://github.com/tc39/proposal-array-grouping/issues/44#issuecomment-1306311107)

##### [3.26.0 - 2022.10.24](https://github.com/zloirock/core-js/releases/tag/v3.26.0)
- [`Array.fromAsync` proposal](https://github.com/tc39/proposal-array-from-async):
Expand Down
6 changes: 4 additions & 2 deletions packages/core-js-compat/src/data.mjs
Expand Up @@ -2062,7 +2062,8 @@ export const data = {
'esnext.array.find-last-index': null,
'esnext.array.group': {
bun: '0.1.9',
chrome: '108',
// https://github.com/tc39/proposal-array-grouping/issues/44#issuecomment-1306311107
// chrome: '108',
},
// TODO: Remove from `core-js@4`
'esnext.array.group-by': {
Expand All @@ -2072,7 +2073,8 @@ export const data = {
},
'esnext.array.group-to-map': {
bun: '0.1.9',
chrome: '108',
// https://github.com/tc39/proposal-array-grouping/issues/44#issuecomment-1306311107
// chrome: '108',
},
'esnext.array.is-template-object': {
},
Expand Down

0 comments on commit fc44490

Please sign in to comment.