454 B
454 B
babel-plugin-es2015-destructuring
Compile ES2015 destructuring to ES5
Installation
$ npm install babel-plugin-es2015-destructuring
Usage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["es2015-destructuring"]
}
Via CLI
$ babel --plugins es2015-destructuring script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["es2015-destructuring"]
});