Enable ES7 async functions using creed coroutines
npm install babel-creed-asyncUse ES7 async functions with babel and creed. This babel plugin turns ES7 async functions into creed coroutines.
Check out an example.
```
npm install --save-dev babel-creed-async
npm install --save creed
Add babel-creed-async as a plugin and blacklist regenerator.
``
babel --plugins babel-creed-async -b regenerator ...
Add babel-creed-async as a plugin and blacklist regenerator in .babelrc or in the babel section of package.json.
`js``
{
"plugins": ["babel-creed-async"],
"blacklist": ["regenerator"]
}