Takaro - v0.4.11
    Preparing search index...

    Function before

    • Creates a function that invokes func, with the this binding and arguments of the created function, while it’s called less than n times. Subsequent calls to the created function return the result of the last func invocation.

      Type Parameters

      • TFunc extends (...args: any[]) => any

      Parameters

      • n: number

        The number of calls at which func is no longer invoked.

      • func: TFunc

        The function to restrict.

      Returns TFunc

      Returns the new restricted function.