this method creates an object composed of the own and inherited enumerable property paths of object that are not omitted.
Rest
{object}
omit({ 'a': 1, 'b': '2', 'c': 3 }, ['a', 'c']);// returns { 'b': '2' } Copy
omit({ 'a': 1, 'b': '2', 'c': 3 }, ['a', 'c']);// returns { 'b': '2' }
Generated using TypeDoc
this method creates an object composed of the own and inherited enumerable property paths of object that are not omitted.