@s-libs/micro-dash
    Preparing search index...

    Function reject

    • The opposite of filter; this function returns the elements of collection that predicate does not return truthy for.

      Contribution to minified bundle size, when it is the only function imported:

      • Lodash: 16,556 bytes
      • Micro-dash: 375 bytes

      Type Parameters

      • I
      • O

      Parameters

      • array: Nil | readonly I[]
      • predicate: ArrayNarrowingIteratee<O>

      Returns Exclude<I, O>[]

    • The opposite of filter; this function returns the elements of collection that predicate does not return truthy for.

      Contribution to minified bundle size, when it is the only function imported:

      • Lodash: 16,556 bytes
      • Micro-dash: 375 bytes

      Type Parameters

      • T

      Parameters

      • array: Nil | readonly T[]
      • predicate: ArrayIteratee<T, boolean>

      Returns T[]

    • The opposite of filter; this function returns the elements of collection that predicate does not return truthy for.

      Contribution to minified bundle size, when it is the only function imported:

      • Lodash: 16,556 bytes
      • Micro-dash: 375 bytes

      Type Parameters

      • I
      • O

      Parameters

      • object: Nil | I
      • predicate: ValueNarrowingIteratee<I, O>

      Returns Exclude<I[keyof I], O>[]

    • The opposite of filter; this function returns the elements of collection that predicate does not return truthy for.

      Contribution to minified bundle size, when it is the only function imported:

      • Lodash: 16,556 bytes
      • Micro-dash: 375 bytes

      Type Parameters

      • I
      • O

      Parameters

      • object: Nil | I
      • predicate: KeyNarrowingIteratee<I, O>

      Returns { [K in string | number | symbol]: Cast<K, string> extends O ? never : I[K] }[keyof I][]

    • The opposite of filter; this function returns the elements of collection that predicate does not return truthy for.

      Contribution to minified bundle size, when it is the only function imported:

      • Lodash: 16,556 bytes
      • Micro-dash: 375 bytes

      Type Parameters

      • T

      Parameters

      • object: Nil | T
      • predicate: ObjectIteratee<T, boolean>

      Returns T[keyof T][]