Maps an object to an object
mapObject({a: '1', b: '2'}, (value, key) => { return value + 1; }); {a: 2, b: 3}
Maps an object to an object