|
||||
---|---|---|---|---|
.. | ||||
lib | 11e3a9652a | преди 7 години | ||
.npmignore | 11e3a9652a | преди 7 години | ||
README.md | 11e3a9652a | преди 7 години | ||
package.json | 11e3a9652a | преди 7 години |
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"]
});