shichen b6c5ecc67a init 10 maanden geleden
..
lib b6c5ecc67a init 10 maanden geleden
.npmignore b6c5ecc67a init 10 maanden geleden
README.md b6c5ecc67a init 10 maanden geleden
package.json b6c5ecc67a init 10 maanden geleden

README.md

babel-plugin-syntax-async-generators

Allow parsing of async generator functions.

Installation

$ npm install babel-plugin-syntax-async-generators

Usage

Via .babelrc (Recommended)

.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"]
});