Skip to content

Instantly share code, notes, and snippets.

@mushinlogit
Last active September 18, 2017 15:12
Show Gist options
  • Save mushinlogit/84926afd53dcda7c123a8227dbdef9d2 to your computer and use it in GitHub Desktop.
Save mushinlogit/84926afd53dcda7c123a8227dbdef9d2 to your computer and use it in GitHub Desktop.
uniqueDownloadTypes.js
const uniqueDownloadTypes = (resp) => {
const types = resp.objects.map(el => el.type);
return new Set(types);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment