Compile ES2015 destructuring to ES5
Compile ES2015 destructuring to ES5
``sh`
$ npm install babel-plugin-transform-es2015-destructuring
.babelrc
`json`
{
"plugins": ["transform-es2015-destructuring"]
}
`sh`
$ babel --plugins transform-es2015-destructuring script.js
`javascript``
require("babel-core").transform("code", {
plugins: ["transform-es2015-destructuring"]
});