UNPKG

babel-plugin-async-to-promises

Version:

Transpile ES7 async/await to vanilla ES6 Promise chains

24 lines (22 loc) 268 B
async function test() { try { try { await a(); } finally { await b(); } } finally { await c(); } } async function test2() { try { await a(); } finally { try { await b(); } finally { await c(); } } }