Omits nested properties by paths from an object.
Source object
Array of dot-separated paths
Object with paths removed
omitDeep({ a: { b: 1, c: 2 } }, ['a.b']);// => { a: { c: 2 } } Copy
omitDeep({ a: { b: 1, c: 2 } }, ['a.b']);// => { a: { c: 2 } }
1.2.0
Omits nested properties by paths from an object.