mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 15:05:08 +00:00
| .. | ||
| lib | ||
| .npmignore | ||
| package.json | ||
| 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"]
});