• Creates a function that negates the result of the predicate func. The func predicate is invoked with the this binding and arguments of the created function.

    Type Parameters

    • T extends any[]

    Parameters

    • predicate: ((...args: T) => boolean)

      The predicate to negate.

        • (...args): boolean
        • Parameters

          • Rest...args: T

          Returns boolean

    Returns ((...args: T) => boolean)

    Returns the new function.

      • (...args): boolean
      • Parameters

        • Rest...args: T

        Returns boolean