UNPKG

225 BJavaScriptView Raw
1import { MAXIMUM_RETRY_DELAY } from "./constants";
2export var defaultDelayDecider = function (delayBase, attempts) {
3 return Math.floor(Math.min(MAXIMUM_RETRY_DELAY, Math.random() * Math.pow(2, attempts) * delayBase));
4};