bahmutov / compiled

Compiles the ES* bundle to your NodeJS version on install
https://glebbahmutov.com/blog/javascript-needs-compile-step/
41 stars 2 forks source link

Add spreadRest support #10

Closed bahmutov closed 8 years ago

bahmutov commented 8 years ago
var params = [ "hello", true, 7 ]
var other = [ 1, 2, ...params ] // [ 1, 2, "hello", true, 7 ]
console.assert(other.length === 5)