Skip to content

Instantly share code, notes, and snippets.

@zshnr
Last active November 21, 2019 15:52
Show Gist options
  • Save zshnr/336ecf532600a4e8000ad20d508e85f6 to your computer and use it in GitHub Desktop.
Save zshnr/336ecf532600a4e8000ad20d508e85f6 to your computer and use it in GitHub Desktop.
Array of objects to object
import reduce from 'lodash-es/reduce';
reduce(arrayofObjects, (acc, obj) => Object.assign(acc, { ...acc, ...obj }), {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment