vlad 6f123ff03e 18.07 | 6 лет назад | |
---|---|---|
.. | ||
lib | 6 лет назад | |
.npmignore | 6 лет назад | |
README.md | 6 лет назад | |
package.json | 6 лет назад |
Compile ES2015 object super to ES5
npm install --save-dev babel-plugin-transform-es2015-object-super
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-es2015-object-super"]
}
babel --plugins transform-es2015-object-super script.js
require("babel-core").transform("code", {
plugins: ["transform-es2015-object-super"]
});