UNPKG

@aws-amplify/graphql-api-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer.

14 lines (13 loc) 376 B
export const retryWrapper = (toRetry, maxRetries, delayMs) => { return async () => { for (let i = 0; i < maxRetries; ++i) { try { return await toRetry(); } catch (e) { await new Promise((resolve) => setTimeout(resolve, delayMs)); } } return await toRetry(); }; };