Omit unwanted attributes from an object
Given an object and a list of keys in the object, returns a new object without any of the given keys.
import * as _ from 'radashi' const fish = { name: 'Bass', weight: 8, source: 'lake', brackish: false,} _.omit(fish, ['name', 'source']) // => { weight, brackish }