Skip to content

Instantly share code, notes, and snippets.

@amiralies
Created July 25, 2019 15:33
Show Gist options
  • Save amiralies/dca0e085bb7063a27175f20a0e996b73 to your computer and use it in GitHub Desktop.
Save amiralies/dca0e085bb7063a27175f20a0e996b73 to your computer and use it in GitHub Desktop.
Object map
const map = (obj, fun) =>
Object.entries(obj).reduce(
(prev, [key, value]) => ({
...prev,
[key]: fun(key, value)
}),
{}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment