|  | ||||
|---|---|---|---|---|
| .. | ||||
| lib | 11e3a9652a | 7 年之前 | ||
| .npmignore | 11e3a9652a | 7 年之前 | ||
| README.md | 11e3a9652a | 7 年之前 | ||
| package.json | 11e3a9652a | 7 年之前 | ||
Compile ES2015 shorthand properties to ES5
In
var o = { a, b, c };
Out
var o = { a: a, b: b, c: c };
In
var cat = {
  getName() {
    return name;
  }
};
Out
var cat = {
  getName: function () {
    return name;
  }
};
npm install --save-dev babel-plugin-transform-es2015-shorthand-properties
.babelrc (Recommended).babelrc
{
  "plugins": ["transform-es2015-shorthand-properties"]
}
babel --plugins transform-es2015-shorthand-properties script.js
require("babel-core").transform("code", {
  plugins: ["transform-es2015-shorthand-properties"]
});