chensenlai 10988628a0 语音房项目初始化 | 5 år sedan | |
---|---|---|
.. | ||
lib | 5 år sedan | |
.npmignore | 5 år sedan | |
README.md | 5 år sedan | |
package.json | 5 år sedan |
Compile ES2015 for...of to ES5
$ npm install babel-plugin-transform-es2015-for-of
.babelrc
(Recommended).babelrc
// without options
{
"plugins": ["transform-es2015-for-of"]
}
// with options
{
"plugins": [
["transform-es2015-for-of", {
"loose": true
}]
]
}
$ babel --plugins transform-es2015-for-of script.js
require("babel-core").transform("code", {
plugins: ["transform-es2015-for-of"]
});