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