English
Appearance
Excludes object properties and constructs a new object.
import { omit } from 'rattail' omit({ a: 1, b: 2, c: 3 }, ['a', 'c']) // return { b: 2 }
object
keys
string[]