UNPKG

vcc-ui

Version:

VCC UI is a collection of React UI Components that can be used for developing front-end applications at Volvo Car Corporation.

11 lines (8 loc) 197 B
export const objectMap = fn => obj => { const mappedObj = {}; Object.keys(obj).map(key => { const value = obj[key]; mappedObj[key] = fn(value, key, obj); }); return mappedObj; };