UNPKG

babel-plugin-async-to-promises

Version:

Transpile ES7 async/await to vanilla ES6 Promise chains

8 lines (7 loc) 96 B
async function test() { var i = 0; test: while (i < 10) { i++; continue test; } }