Skip to content

Instantly share code, notes, and snippets.

@dzava
Created November 17, 2016 20:42
Show Gist options
  • Save dzava/8393255c8655cf8a366ef9b5a3afb376 to your computer and use it in GitHub Desktop.
Save dzava/8393255c8655cf8a366ef9b5a3afb376 to your computer and use it in GitHub Desktop.
unique: (array, test) ->
result = []
seen = []
for item in array
computed = test(item)
if seen.indexOf(computed)
seen.push(computed)
result.push(item)
return result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment