(no title)
Lyrkan | 6 years ago
There are also some other incorrect things in that post that makes the code overly complicated, like:
> Every async function needs a new Promise, and needs to resolve()
That's definitely not needed unless you call something that runs asynchronously without being `async` or returning a standard `Promise` (in which case you could probably use a generic wrapper to convert them to `Promise` objects and avoid having to do that everytime).
No comments yet.