Returns a copy of the given object that contains all except the given keys.
let object = { foo: 1, bar: 2, baz: 3 } up.util.omit(object, ['foo', 'baz']) // result: { bar: 2 }