Skip to content

Instantly share code, notes, and snippets.

@gdekefir
Last active July 31, 2017 21:25
Show Gist options
  • Save gdekefir/ac07502569ccbb278c462a1d34f087c6 to your computer and use it in GitHub Desktop.
Save gdekefir/ac07502569ccbb278c462a1d34f087c6 to your computer and use it in GitHub Desktop.
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}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment