▲ Is async/await a step back to JavaScript? at medium.com▼1 up and 0 down, posted by gabmontes 2898 days ago 3 comments
kirilloid 2892 days ago. link parent 1 point ▲ ▼As a matter of fact, retry it's not very hard to write in pure promises: const retry = (fn, times) => times >= 0 ? fn().catch(() => retry(fn, times-1)) : fn();