Pick returns a new object composed from the selected object properties.
object
(object): input objectpaths
(...(string|string[])): paths names of properties to be returned from an object
(object): object with selected properties
const result = Objects.pick({ a: 'mixed', b34: 'toast', 45: 'pasta' }, 'a', 45);
console.log(result);
> { 45: 'pasta', a: 'mixed' }