Skip to content

Instantly share code, notes, and snippets.

@jakerobers
Last active April 11, 2020 18:56
Show Gist options
  • Save jakerobers/26112544f984835e313260f5e9a8541f to your computer and use it in GitHub Desktop.
Save jakerobers/26112544f984835e313260f5e9a8541f to your computer and use it in GitHub Desktop.
import _ from 'lodash/fp';
export const indexBooksByAuthor = _.keyBy('authorId');
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