Skip to content

Instantly share code, notes, and snippets.

@hacker-DOM
Created June 18, 2019 16:13
Show Gist options
  • Save hacker-DOM/c9d4c96ef1570df97eff6e88c18e3b5e to your computer and use it in GitHub Desktop.
Save hacker-DOM/c9d4c96ef1570df97eff6e88c18e3b5e to your computer and use it in GitHub Desktop.
var mapObjIndexed = _curry2(function mapObjIndexed(fn, obj) {
return _reduce(function(acc, key) {
acc[key] = fn(obj[key], key, obj);
return acc;
}, {}, keys(obj));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment