babel-plugin-transform-async-functions
v6.22.0
Published
Compile async functions to ES5
Keywords
Readme
babel-plugin-transform-async-functions
Compile async functions to ES5
Installation
$ npm install babel-plugin-transform-async-functionsUsage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["transform-async-functions"]
}Via CLI
$ babel --plugins transform-async-functions script.jsVia Node API
require("babel-core").transform("code", {
plugins: ["transform-async-functions"]
});