babel-plugin-syntax-async-functions

Allow parsing of async functions.

Usage no npm install needed!

<script type="module">
  import babelPluginSyntaxAsyncFunctions from 'https://cdn.skypack.dev/babel-plugin-syntax-async-functions';
</script>

README

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