Skip to content

Instantly share code, notes, and snippets.

@iknowmac
Last active February 7, 2019 15:02
Show Gist options
  • Save iknowmac/5a722c31a0c7ce6ab4d6c89848abb14b to your computer and use it in GitHub Desktop.
Save iknowmac/5a722c31a0c7ce6ab4d6c89848abb14b to your computer and use it in GitHub Desktop.
_.chain(arr)
.uniqBy('name')
.map(el => ({ id: el.id, name: el.name }))
.orderBy(['name'], ['asc'])
.value();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment