You need to sign in or sign up before continuing.
Name Last Update
..
lib Loading commit data...
.npmignore Loading commit data...
README.md Loading commit data...
package.json Loading commit data...

babel-plugin-syntax-async-functions

Allow parsing of async functions.

Installation

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

Usage

Via .babelrc (Recommended)

.babelrc

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

Via CLI

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

Via Node API

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