Skip to content

Instantly share code, notes, and snippets.

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