DEV Community

[Comment from a deleted post]
Collapse
 
peq profile image
Peter Zeller

The purpose of async/await is parallelism (in the form of cooperative multitasking), so if you don't use it, just use a plain old fashioned function instead of an async function.

If you are always calling your async function with await before it, you're getting none of the benefits of async.