@clerk/shared
Version:
Internal package utils used by the Clerk SDKs
45 lines (44 loc) • 1.52 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/callWithRetry.ts
var callWithRetry_exports = {};
__export(callWithRetry_exports, {
callWithRetry: () => callWithRetry
});
module.exports = __toCommonJS(callWithRetry_exports);
function wait(ms) {
return new Promise((res) => setTimeout(res, ms));
}
var MAX_NUMBER_OF_RETRIES = 5;
async function callWithRetry(fn, attempt = 1, maxAttempts = MAX_NUMBER_OF_RETRIES) {
try {
return await fn();
} catch (e) {
if (attempt >= maxAttempts) {
throw e;
}
await wait(2 ** attempt * 100);
return callWithRetry(fn, attempt + 1, maxAttempts);
}
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
callWithRetry
});
//# sourceMappingURL=callWithRetry.js.map