chensenlai 10988628a0 语音房项目初始化 | 5 yıl önce | |
---|---|---|
.. | ||
lib | 5 yıl önce | |
.npmignore | 5 yıl önce | |
README.md | 5 yıl önce | |
package.json | 5 yıl önce |
Compile ES2015 arrow functions to ES5
$ npm install babel-plugin-transform-es2015-arrow-functions
.babelrc
(Recommended).babelrc
// without options
{
"plugins": ["transform-es2015-arrow-functions"]
}
// with options
{
"plugins": [
["transform-es2015-arrow-functions", { "spec": true }]
]
}
$ babel --plugins transform-es2015-arrow-functions script.js
require("babel-core").transform("code", {
plugins: ["transform-es2015-arrow-functions"]
});