asapach / babel-plugin-rewire-exports

Babel plugin for stubbing [ES6, ES2015] module exports
MIT License
66 stars 7 forks source link

Support destructured exports #10

Closed asapach closed 6 years ago

asapach commented 6 years ago
export var {foo, bar, baz} = qux;
export var [ham, ...eggs] = bacon;

Also support object rest/spread once it's widely supported.