v2.2.1
Hoisted async functions are no longer incorrectly eliminated (when transform-async-to-generator is used):
function foo() {
return bar();
async function bar() {} // <- this is no longer eliminated
}Hoisted async functions are no longer incorrectly eliminated (when transform-async-to-generator is used):
function foo() {
return bar();
async function bar() {} // <- this is no longer eliminated
}