Uneventful
    Preparing search index...
    • Syntax sugar for an IIFE (i.e. to use call(() => ...) instead of (()=> ...)() )

      Type Parameters

      • F extends () => any

      Parameters

      • fn: F

      Returns ReturnType<F>

    • Like fn.call(thisArg, ...args), but monomorphic, and the thisArg parameter can be omitted or null.

      Type Parameters

      Parameters

      • fn: F
      • OptionalthisArg: ThisParameterType<F>
      • ...args: Parameters<F>

      Returns ReturnType<F>