Skip to content

Instantly share code, notes, and snippets.

@whisher
Created November 23, 2018 19:53
Show Gist options
  • Save whisher/017b375b216d097364a251b5041a1250 to your computer and use it in GitHub Desktop.
Save whisher/017b375b216d097364a251b5041a1250 to your computer and use it in GitHub Desktop.
const entities = posts.reduce(
(entities: { [id: string]: Post }, post: Post) => {
return {
...entities,
[post._id]: post,
};
},
{
...state.entities,
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment