Skip to content

Instantly share code, notes, and snippets.

@wiyoe
Last active January 4, 2018 13:18
Show Gist options
  • Select an option

  • Save wiyoe/7feac0e2a81fdfb0d16ef2bcf1deb5b5 to your computer and use it in GitHub Desktop.

Select an option

Save wiyoe/7feac0e2a81fdfb0d16ef2bcf1deb5b5 to your computer and use it in GitHub Desktop.
Lodash custom function (check value equality).
_.mixin({ // Lodash add custom function
'isSame' : function(x, y) {
return x == y;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment