Skip to content

Instantly share code, notes, and snippets.

@Ivannnnn
Created January 30, 2020 10:44
Show Gist options
  • Save Ivannnnn/30355f364b40b25f946df8015bdf2fbc to your computer and use it in GitHub Desktop.
Save Ivannnnn/30355f364b40b25f946df8015bdf2fbc to your computer and use it in GitHub Desktop.
function keyBy(collection, key) {
const result = {}
collection.forEach(item => result[item[key]] = item)
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment