Skip to content

Instantly share code, notes, and snippets.

@ComFreek
Created July 1, 2014 19:49
Show Gist options
  • Save ComFreek/3afba7f9c0acd5fcbaa5 to your computer and use it in GitHub Desktop.
Save ComFreek/3afba7f9c0acd5fcbaa5 to your computer and use it in GitHub Desktop.
Lo-Dash indexOf with deep equality check
function indexOfDeep(arr, needle) {
return _.findIndex(arr,function (entry) {
return _.isEqual(entry, needle);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment