Same as the TypeScript built-in type Omit except that it works on actual runtime values.
Omit
import {omitObjectKeys} from '@augment-vir/common';omitObjectKeys({a: 'a', b: 'b'}, ['a']);// output is `{b: 'b'}` Copy
import {omitObjectKeys} from '@augment-vir/common';omitObjectKeys({a: 'a', b: 'b'}, ['a']);// output is `{b: 'b'}`
@augment-vir/common
Same as the TypeScript built-in type
Omit
except that it works on actual runtime values.