Skip to content

Instantly share code, notes, and snippets.

@codexico
Created May 13, 2019 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codexico/c7b47d95650be2b3252c3c12fa1cf5e4 to your computer and use it in GitHub Desktop.
Save codexico/c7b47d95650be2b3252c3c12fa1cf5e4 to your computer and use it in GitHub Desktop.
retry function N times with condition in javascript
function executeOrRetry(retries, condition, fn, interval) {
if ((retries > 0) && condition()) {
setTimeout(() => {
executeOrRetry(retries--, condition, fn);
}, interval);
} else {
fn();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment