You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changelog and official ES6 Support page states that Spread operator is supported without any runtime flags by >= 5.x.x. However, I get SyntaxError while using it without --es-staging flag. For example:
$ node -e 'var f = function (...parts) {};'
[eval]:1
var f = function(...parts) {};
^^^
SyntaxError: Unexpected token ...
at Object.exports.runInThisContext (vm.js:53:16)
at Object.<anonymous> ([eval]-wrapper:6:22)
at Module._compile (module.js:398:26)
at node.js:592:27
at nextTickCallbackWith0Args (node.js:433:9)
at process._tickCallback (node.js:362:13)
ChALkeR
added
invalid
Issues and PRs that are invalid.
and removed
doc
Issues and PRs related to the documentations.
v8 engine
Issues and PRs related to the V8 dependency.
labels
Dec 20, 2015
Changelog and official ES6 Support page states that Spread operator is supported without any runtime flags by
>= 5.x.x
. However, I getSyntaxError
while using it without--es-staging
flag. For example:I'm on OS X with node 5.3.0 installed via homebrew and its default config (AFAIK, it uses https://nodejs.org/dist/v5.3.0/node-v5.3.0.tar.gz), here's my
process.versions
:The text was updated successfully, but these errors were encountered: