hakk
hakk copied to clipboard
handle deeper destructuring exports
We are handling first-level destructuring exports, but it would be better to have deeper destructuring. For example:
export { x: [a,b] } = obj1;
export [ y: { c: [e, f] } ] = obj2;
etc.