You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tan b155d9f548
1
10 months ago
..
lib 1 10 months ago
.npmignore 1 10 months ago
README.md 1 10 months ago
package.json 1 10 months ago

README.md

babel-plugin-syntax-async-generators

Allow parsing of async generator functions.

Installation

$ npm install 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"]
});