Appearance
Create an object without the given properties.
omit({ a: 1, b: 2, c: 3 }, ['a', 'b']) // => { c: 3 }
const { omit } = require('rhodash') omit({ a: 1, b: 2, c: 3 }, ['a', 'b']) // => { c: 3 }