ahdinosaur/es2040

object rest spread?

Opened this issue · 0 comments

i find myself using babel-plugin-transform-object-rest-spread sometimes:

// Rest properties 
let { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };
console.log(x); // 1 
console.log(y); // 2 
console.log(z); // { a: 3, b: 4 } 
 
// Spread properties 
let n = { x, y, ...z };
console.log(n); // { x: 1, y: 2, a: 3, b: 4 } 

should we add it?