vlad 6f123ff03e 18.07 | il y a 6 ans | |
---|---|---|
.. | ||
lib | il y a 6 ans | |
.npmignore | il y a 6 ans | |
README.md | il y a 6 ans | |
package.json | il y a 6 ans |
Turn async functions into ES2015 generators
In
async function foo() {
await bar();
}
Out
var _asyncToGenerator = function (fn) {
...
};
var foo = _asyncToGenerator(function* () {
yield bar();
});
npm install --save-dev babel-plugin-transform-async-to-generator
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-async-to-generator"]
}
babel --plugins transform-async-to-generator script.js
require("babel-core").transform("code", {
plugins: ["transform-async-to-generator"]
});