How do I simplify the array below
[ { uuid: '',
quantity: 3,
procurement_detail_uuid: '',
distribution_officer_uuid: '',
substore_uuid: '2343423443423' },
{ uuid: '',
quantity: 3,
procurement_detail_uuid: '',
distribution_officer_uuid: '',
substore_uuid: '676767' } ]
to
[ { quantity: 3,
substore_uuid: '2343423443423' },
{ quantity: 3,
substore_uuid: '676767' } ]
What is the fastest way reduce and filter those key?