Skip to content

Instantly share code, notes, and snippets.

@abradley2
Created April 20, 2017 16:46
Show Gist options
  • Save abradley2/930a065c7850135e298bfad13270e30f to your computer and use it in GitHub Desktop.
Save abradley2/930a065c7850135e298bfad13270e30f to your computer and use it in GitHub Desktop.
uniqe
const unique = list => list.reduce((a, c) => (a.indexOf(c) < 0 ? [c].concat(a) : a), []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment