Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created June 23, 2018 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dance2die/1c0f3799d371c2c4bdaf1603ed32f228 to your computer and use it in GitHub Desktop.
Save dance2die/1c0f3799d371c2c4bdaf1603ed32f228 to your computer and use it in GitHub Desktop.
var uniqueInOrder = function (iterable)
{
return [].filter.call(iterable, (function (a, i) { return iterable[i - 1] !== a }));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment