omit es-toolkit
Returns a new object excluding the specified keys.
Usage
omit(obj, keys)
Use omit when you want to exclude specific keys from an object. It returns a new object with the properties corresponding to the specified keys removed.
Parameters
objT extends Record<string, any>required
The object to exclude keys from.
keysreadonly K[]required
An array of keys to exclude from the object.
Returns
A new object with the specified keys excluded.
Source: es-toolkit
Re-exported verbatim from es-toolkit. Implementation, edge cases, and performance behavior are owned upstream. This page mirrors the documentation at the pinned version; the linked source is authoritative.