babel/packages/babel-plugin-syntax-async-generators
2017-10-16 22:49:56 -04:00
..
2017-06-27 12:15:00 -05:00
2017-03-25 21:46:16 -04:00

babel-plugin-syntax-async-generators

Allow parsing of async generator functions.

Example

Syntax

async function* agf() {
  await 1;
}
async function f() {
  for await (let x of y) {
    g(x);
  }
}

Installation

npm install --save-dev babel-plugin-syntax-async-generators

Usage

.babelrc

{
  "plugins": ["syntax-async-generators"]
}

Via CLI

babel --plugins syntax-async-generators script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["syntax-async-generators"]
});

References