vlad 6f123ff03e 18.07 | %!s(int64=6) %!d(string=hai) anos | |
---|---|---|
.. | ||
lib | %!s(int64=6) %!d(string=hai) anos | |
.npmignore | %!s(int64=6) %!d(string=hai) anos | |
README.md | %!s(int64=6) %!d(string=hai) anos | |
package.json | %!s(int64=6) %!d(string=hai) anos |
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"]
});