根据这个compatibility table,Node 6.5中的解构或扩展运算符应该没有问题
但是,这段代码在这里:
const things = {
a: 1,
b: 2,
c: true,
d: false
};
const { a, b, ...rest } = things;
console.log(a); // 1
console.log(b); // 2
console.log(rest); // { c: true, d: false }
引发此错误:
const { a, b, ...rest } = things;
^^^
SyntaxError: Unexpected token ...
at Object.exports.runInThisContext (vm.js:76:16)
at Module._compile (module.js:528:28)
at Object.Module._extensions..js (module.js:565:10)
at Module.load (module.js:473:32)
at tryModuleLoad (module.js:432:12)
at Function.Module._load (module.js:424:3)
at Module.runMain (module.js:590:10)
at run (bootstrap_node.js:394:7)
at startup (bootstrap_node.js:149:9)
at bootstrap_node.js:509:3
即使在这个babel compiler中也没有问题。
任何想法是怎么回事? (是的,我安装了Node 6.5)