- Preparing search index...
- The search index is not available
atomic-fns
- omit<T>(obj: T, paths: Iteratee<any, any, any>): Partial<T>
-
Parameters
-
obj: T
-
paths: Iteratee<any, any, any>
Returns Partial<T>
- omit<T>(obj: T, paths: PropertyKey[]): Partial<T>
-
Parameters
-
obj: T
-
paths: PropertyKey[]
Returns Partial<T>
The opposite of pick - this method creates an object composed of the own and inherited enumerable property paths of
object
that are not omitted.Example
Returns
Returns the new object.
See
pick