babel-plugin-es2015-for-of
Compile ES2015 for...of to ES5
Installation
$ npm install babel-plugin-es2015-for-of
Usage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["es2015-for-of"]
}
Via CLI
$ babel --plugins es2015-for-of script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["es2015-for-of"]
});