We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The object rest/spread syntax, e.g. { x, y, ...z }, has reached Stage 4 (a.k.a. it’s been approved as part of ES2018). When this feature was implemented in #4493, the syntax was only Stage 3, and so a polyfill was added as per our policy. But now that the syntax is finalized, and supported by Node 8.6+, we can remove the polyfill.
{ x, y, ...z }
The text was updated successfully, but these errors were encountered:
Fix #4876: remove polyfill for object rest/spread (#4884)
871079b
* object rest/spread * merge branch 'master' into 'object_rest_spread' * explore * Revert "merge branch 'master' into 'object_rest_spread'" This reverts commit eeeffef. * Revert "explore" This reverts commit d21cd72. * split tests * improvements * unassignable rest property * cleanup * formatting, cleanup * handle non-final object-destructured splat * merge with @helixbass's branch
No branches or pull requests
The object rest/spread syntax, e.g.
{ x, y, ...z }
, has reached Stage 4 (a.k.a. it’s been approved as part of ES2018). When this feature was implemented in #4493, the syntax was only Stage 3, and so a polyfill was added as per our policy. But now that the syntax is finalized, and supported by Node 8.6+, we can remove the polyfill.The text was updated successfully, but these errors were encountered: