Transform all keys
var mapKeys = useWith(compose(fromPairs, call), [o(map, adjust(__, 0)), toPairs]) mapKeys(R.toUpper, { a: 1, b: 2, c: 3 }); //=> {"A": 1, "B": 2, "C": 3}