Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ECMAScript feature status, include ES2021 #1052

Merged
merged 2 commits into from
Jan 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,31 @@ The entire execution engine was rebuild with performance in mind, in many cases
#### ECMAScript 2019

- ✔ `Array.prototype.flat`, `Array.prototype.flatMap`
- ✔ `String.prototype.trimStart`, `String.prototype.trimEnd`
- ✔ `Object.fromEntries`
- ✔ `Symbol.description`
- ✔ Optional catch binding

#### ECMAScript 2020

- ✔ BigInt
- ✔ `BigInt`
- ❌ `export * as ns from`
- ✔ `for-in` enhancements
- ✔ `globalThis` object
- ❌ `import`
- ❌ `import.meta`
- ✔ Nullish coalescing operator (`??`)
- ✔ Optional chaining
- ❌ `Promise.allSettled`
- ✔ `String.prototype.matchAll`

#### ECMAScript 2021

- ✔ Logical Assignment Operators (`&&=` `||=` `??=`)
- ✔ Numeric Separators (`1_000`)
- ❌ `Promise.any` and `AggregateError`
- ❌ `String.prototype.replaceAll`
- ❌ `WeakRef` and `FinalizationRegistry`

#### Other

Expand Down