Options
All
  • Public
  • Public/Protected
  • All
Menu

Module function/throttleEnd

Index

References

Functions

References

Renames and re-exports throttleEnd

Functions

  • Creates a throttled function that only invokes fn at most once per every wait milliseconds. fn is called in the end of wait delay

    Type parameters

    Parameters

    • wait: number

      The number of milliseconds to throttle invocations to.

    • fn: F

      The function to throttle.

    Returns ThrottleFunc<F>

  • Creates a throttled function that only invokes fn at most once per every wait milliseconds. fn is called in the end of wait delay

    Parameters

    • wait: number

      The number of milliseconds to throttle invocations to.

    Returns <F>(fn: F) => ThrottleFunc<F>

Generated using TypeDoc