mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 01:00:34 +08:00
5 lines
182 B
JavaScript
5 lines
182 B
JavaScript
// @ts-check
|
|
const { fetch } = require('undici');
|
|
const fetchWithRetry = /** @type {fetch} */(require('@vercel/fetch-retry')(fetch));
|
|
module.exports.fetchWithRetry = fetchWithRetry;
|