Skip to content

Commit

Permalink
change Array by copy proposal marked as supported from V8 ~ Chrome 110
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Jan 12, 2023
1 parent 9d8381d commit fcd5af4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
- Added one more workaround of a `webpack` dev server bug on IE global methods, [#1161](https://github.com/zloirock/core-js/issues/1161)
- Fixed possible `String.{ raw, cooked }` error with empty template array
- Used non-standard V8 `Error.captureStackTrace` instead of stack parsing in new error classes / wrappers where it's possible
- Added Samsung Internet 20 compat data mapping
- Added Quest Browser 25 compat data mapping
- Added Electron 23 and 24 compat data mapping
- Compat data improvements:
- [Change `Array` by copy proposal](https://github.com/tc39/proposal-change-array-by-copy) marked as supported from V8 ~ Chrome 110
- Added Samsung Internet 20 compat data mapping
- Added Quest Browser 25 compat data mapping
- Added Electron 23 and 24 compat data mapping
- Minor tweaks of minification settings for `core-js-bundle`
- Refactoring, some minor fixes, improvements, optimizations

Expand Down
9 changes: 8 additions & 1 deletion packages/core-js-compat/src/data.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1844,20 +1844,24 @@ export const data = {
'esnext.array.last-item': {
},
'esnext.array.to-reversed': {
chrome: '110',
deno: '1.27',
safari: '16.0',
},
'esnext.array.to-sorted': {
chrome: '110',
deno: '1.27',
safari: '16.0',
},
'esnext.array.to-spliced': {
chrome: '110',
deno: '1.27',
safari: '16.0',
},
'esnext.array.unique-by': {
},
'esnext.array.with': {
chrome: '110',
deno: '1.27',
safari: '16.0',
},
Expand Down Expand Up @@ -2191,10 +2195,12 @@ export const data = {
'esnext.typed-array.group-by': {
},
'esnext.typed-array.to-reversed': {
chrome: '110',
deno: '1.27',
safari: '16.0',
},
'esnext.typed-array.to-sorted': {
chrome: '110',
deno: '1.27',
safari: '16.0',
},
Expand All @@ -2204,8 +2210,9 @@ export const data = {
'esnext.typed-array.unique-by': {
},
'esnext.typed-array.with': {
deno: '1.27',
bun: '0.1.9',
chrome: '110',
deno: '1.27',
},
'esnext.weak-map.delete-all': {
},
Expand Down

0 comments on commit fcd5af4

Please sign in to comment.