Last active
November 21, 2019 15:52
-
-
Save zshnr/336ecf532600a4e8000ad20d508e85f6 to your computer and use it in GitHub Desktop.
Array of objects to object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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