1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/packages/utils/net.ts

31 lines
639 B
TypeScript

/* eslint-disable import/prefer-default-export */
import { msleep } from './time';
import fetch from 'node-fetch';
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
export const fetchWithRetry = async (url: string, opts: any = null) => {
if (!opts) opts = {};
let retry = opts && opts.retry || 3;
while (retry > 0) {
try {
return fetch(url, opts);
} catch (e) {
if (opts && opts.callback) {
opts.callback(retry);
}
retry = retry - 1;
if (retry === 0) {
throw e;
}
if (opts && opts.pause) {
await msleep(opts.pause);
}
}
}
return null;
};