Pacote
    Preparing search index...

    Function retry

    • Retries calling a function asynchronously.

      The handler accepts options that limit how many retries can be performed.

      Type Parameters

      • T

      Parameters

      • callback: () => T | Promise<T>

        Synchronous or asynchronous function to execute. The first successful invocation result will by returned by retry.

      • Optionaloptions: RetryOptions = {}

        Retry options.

      Returns Promise<T>

      The first successful result of the provided callback, or the last error thrown by the callback before the function gives up retrying.

      import { retry } from '@pacote/retry'

      await retry(async () => fetch(...), { retries: 3 })