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