Skip to content

Instantly share code, notes, and snippets.

@1yx
Created September 7, 2016 07:18
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 1yx/e17841fcee14d1dc3fbd4e93f07dcbab to your computer and use it in GitHub Desktop.
Save 1yx/e17841fcee14d1dc3fbd4e93f07dcbab to your computer and use it in GitHub Desktop.
_.mixin({
'duplicate': (array) => _.filter(array, function (value, index, iteratee) {
return _.includes(iteratee, value, index + 1)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment