6.22.0 • Published 7 years ago

babel-plugin-transform-async-functions v6.22.0

Weekly downloads
1,534
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-transform-async-functions

Compile async functions to ES5

Installation

$ npm install babel-plugin-transform-async-functions

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-async-functions"]
}

Via CLI

$ babel --plugins transform-async-functions script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-async-functions"]
});