| 
				
					 | 
			2 years ago | |
|---|---|---|
| .. | ||
| lib | 2 years ago | |
| .npmignore | 2 years ago | |
| README.md | 2 years ago | |
| package.json | 2 years ago | |
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"]
});