docs/reference/object/omit.md
Returns a new object excluding the specified keys.
const result = omit(obj, keys);
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.
import { omit } from 'es-toolkit/object';
// Exclude specific keys
const obj = { a: 1, b: 2, c: 3, d: 4 };
const result = omit(obj, ['b', 'c']);
// result is { a: 1, d: 4 }
// Specifying non-existent keys doesn't cause an error
const safe = omit(obj, ['b', 'nonexistent']);
// safe is { a: 1, c: 3, d: 4 }
obj (T extends Record<string, any>): The object to exclude keys from.keys (readonly K[]): An array of keys to exclude from the object.(Omit<T, K>): A new object with the specified keys excluded.