Skip to content

Instantly share code, notes, and snippets.

@jgimbel
Created May 15, 2017 19:16
Show Gist options
  • Save jgimbel/f845c6f084da520ef86dd745b42af101 to your computer and use it in GitHub Desktop.
Save jgimbel/f845c6f084da520ef86dd745b42af101 to your computer and use it in GitHub Desktop.
var mapValues = function mapValues(obj, map) {
return Object.keys(obj).reduce(function (o, k) {
return Object.assign(o, _defineProperty({}, k, map(obj[k])));
}, {});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment