vlad 6f123ff03e 18.07 | hace 6 años | |
---|---|---|
.. | ||
lib | hace 6 años | |
.npmignore | hace 6 años | |
README.md | hace 6 años | |
package.json | hace 6 años |
Compile ES2015 destructuring to ES5
npm install --save-dev babel-plugin-transform-es2015-destructuring
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-es2015-destructuring"]
}
babel --plugins transform-es2015-destructuring script.js
require("babel-core").transform("code", {
plugins: ["transform-es2015-destructuring"]
});