Files
flutter-go/web-server/node_modules/babel-plugin-syntax-async-functions
sanfan.hx ec46955a9e temp
2019-05-28 10:32:16 +08:00
..
2019-05-28 10:32:16 +08:00
2019-05-28 10:32:16 +08:00
2019-05-28 10:32:16 +08:00
2019-05-28 10:32:16 +08:00

babel-plugin-syntax-async-functions

Allow parsing of async functions.

Installation

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

Usage

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