Pacote
    Preparing search index...

    Function throttle

    • Creates a throttled version of the passed function.

      By calling the throttled function repeatedly, the original function is called once immediately and then at most once for every period of time determined by the delay argument.

      Type Parameters

      • A extends any[]

      Parameters

      • fn: (...args: A) => any

        The function to throttle. Can accept any number of arguments.

      • delay: number = 0

        The minimum time (in milliseconds) that must pass between successive calls. Defaults to 0.

      Returns Throttled<A> & Cancellable

      A throttled version of the input function with an additional cancel() method. The cancel method can be used to reset the throttle timer.

      import { throttle } from '@pacote/throttle'

      const throttledFn = throttle(fn, 100)

      throttledFn() // fn() is called immediately
      throttledFn() // fn() is scheduled for execution after 100ms
      throttledFn() // fn() is scheduled for execution, cancelling the previous one