omit By < T > ( object , predicate ? ) : Dictionary < T > Parameters object : undefined | null | Dictionary < T > Optional
predicate : ValueKeyIteratee < T > Returns Dictionary < T > Returns the new object.
Defined in node_modules/@types/lodash/common/object.d.ts:2021 omit By < T > ( object , predicate ? ) : NumericDictionary < T > Parameters object : undefined | null | NumericDictionary < T > Optional
predicate : ValueKeyIteratee < T > Returns NumericDictionary < T > Defined in node_modules/@types/lodash/common/object.d.ts:2025 omit By < T > ( object , predicate ) : Partial < T > Parameters object : undefined | null | T predicate : ValueKeyIteratee < T [ keyof T ] > Returns Partial < T > Defined in node_modules/@types/lodash/common/object.d.ts:2029
The opposite of
_.pickBy
; this method creates an object composed of the own and inherited enumerable properties ofobject
thatpredicate
doesn't return truthy for.