vlad 6f123ff03e 18.07 il y a 6 ans
..
lib 6f123ff03e 18.07 il y a 6 ans
.npmignore 6f123ff03e 18.07 il y a 6 ans
README.md 6f123ff03e 18.07 il y a 6 ans
package.json 6f123ff03e 18.07 il y a 6 ans

README.md

babel-plugin-transform-es2015-object-super

Compile ES2015 object super to ES5

Installation

npm install --save-dev babel-plugin-transform-es2015-object-super

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-es2015-object-super"]
}

Via CLI

babel --plugins transform-es2015-object-super script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-es2015-object-super"]
});