vlad 6f123ff03e 18.07 | 6 年之前 | |
---|---|---|
.. | ||
lib | 6 年之前 | |
.npmignore | 6 年之前 | |
README.md | 6 年之前 | |
package.json | 6 年之前 |
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"]
});