Snippets
Copy-paste code snippets with the anatomy that matters: the code, why it's written that way, and where it deliberately stops working.
SnippetJavaScript
Retry an async call with backoffasync function retryWithBackoff(fn, { retries = 3, baseMs = 200, maxMs = 5000 } = {}) {