Skip to content

Instantly share code, notes, and snippets.

@chris-martin
Last active December 18, 2015 11:48
Show Gist options
  • Save chris-martin/5777818 to your computer and use it in GitHub Desktop.
Save chris-martin/5777818 to your computer and use it in GitHub Desktop.
function unique(array) {
var visited = {};
return array.filter(function (x) {
var isNew = !visited.hasOwnProperty(x);
visited[x] = true;
return isNew;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment