idsaepe
Version:
13 lines (12 loc) • 376 B
JavaScript
export let defaultRetryOptions = {
delay: 250,
maxTry: 4 * 60,
until: null,
};
export function setDefaultRetryOptions(retryOptions) {
defaultRetryOptions = Object.assign(Object.assign({}, defaultRetryOptions), retryOptions);
return getDefaultRetryOptions();
}
export function getDefaultRetryOptions() {
return Object.assign({}, defaultRetryOptions);
}