Skip to content

Instantly share code, notes, and snippets.

@jakerobers
Last active April 11, 2020 18:56
Show Gist options
  • Save jakerobers/fd3bfca396b275c866eb0ae5cd9ab818 to your computer and use it in GitHub Desktop.
Save jakerobers/fd3bfca396b275c866eb0ae5cd9ab818 to your computer and use it in GitHub Desktop.
import _ from 'lodash';
export const indexBooksByAuthor = (books) => {
return _.reduce(books, (acc, e) => {
acc[e.authorId] = e
return acc
}, {});
}
export const getSomeValue = () => {
// some code ...
const booksByAuthor = indexBooksByAuthor(books);
// some more code ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment