You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
477 B
477 B
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"]
});