UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

19 lines 532 B
//#region src/compat/function/negate.d.ts /** * Creates a function that negates the result of the predicate function. * * @template T - The type of the arguments array. * @param predicate - The predicate to negate. * @returns The new negated function. * * @example * function isEven(n) { * return n % 2 == 0; * } * * filter([1, 2, 3, 4, 5, 6], negate(isEven)); * // => [1, 3, 5] */ declare function negate<T extends any[]>(predicate: (...args: T) => boolean): (...args: T) => boolean; //#endregion export { negate };