UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

11 lines (9 loc) 263 B
export function omit<T extends object, K extends keyof T>( obj: T, props: K[], ): Omit<T, K> { const filteredEntries = Object.entries(obj).filter( ([key]) => !props.includes(key as K), ); return Object.fromEntries(filteredEntries) as Omit<T, K>; }