babel/packages/babel-plugin-transform-async-generator-functions

babel-plugin-transform-async-functions

Turn async generator functions and for-await statements to ES2015 generators

Installation

$ npm install babel-plugin-transform-async-generator-functions

Usage

.babelrc

{
  "plugins": ["transform-async-generator-functions"]
}

Via CLI

$ babel --plugins transform-async-generator-functions script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-async-generator-functions"]
});