Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "common/function/function-call-deserializer"

Index

Classes

Functions

Functions

bind

  • bind<TResult>(fn: Function, params: any[]): function
  • Binds the function to undefined and the given params. Uses Function.bind if available or creates its own wrapper if not.

    Type parameters

    • TResult

    Parameters

    • fn: Function

      the function to bind to the given parameters

    • params: any[]

      the parameters to which the function is partially bound

    Returns function

    a partially bound function

      • (...args: any[]): TResult
      • Parameters

        • Rest ...args: any[]

        Returns TResult

Generated using TypeDoc