Dan Harper 682e9658c9 Fix bodyless async functions (#4600)
* fix bodyless async functions (#4599)

* Do the same in the async-generator-functions transform
2016-09-29 12:01:37 +02:00

8 lines
140 B
JavaScript

babelHelpers.asyncToGenerator(function* () {
return yield promise;
});
babelHelpers.asyncToGenerator(function* () {
yield promise;
});