top | item 13560853

(no title)

chadscira | 9 years ago

Yea but when using promises with async/await its very beautiful.

    await asyncFuncOne();
    await asyncFuncTwo();
No more weird water-falling, and finally proper exception handling. The only gotcha is the fact that we cant awaits at the root of a module, and we need to wrap it in a async function.

discuss

order

wildpeaks|9 years ago

The 250Kb extra weight to the Babel bundles (compared to the equivalent callback version) is quite frustrating though.