Skip to content

v2.2.1

Choose a tag to compare

@erikdesjardins erikdesjardins released this 17 Sep 04:23
· 12 commits to master since this release

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
}