_.pickTypes
Returns one or more new objects with keys that only contain values of defined types
_.pickTypes(types, objects)
_.pickTypes('number', {name: 'drezzy', age: 17, birthday: 11})
// => { age: 17, birthday: 11} Last updated