@tempots/std
removeObjectFields() function
Removes specified fields from an object and returns a new object without those fields.
Signature:
removeObjectFields: <T extends object, F extends Array<keyof T>>(ob: T, ...fields: F) => Omit<T, TupleToUnion<F>>
Parameters
Parameter |
Type |
Description |
---|---|---|
ob |
T |
The object from which fields will be removed. |
fields |
F |
The fields to be removed from the object. |
Returns: Omit<T, TupleToUnion<F>>
A new object without the specified fields.