Skip to content

Instantly share code, notes, and snippets.

@blissdev
Created March 25, 2013 16:22
Show Gist options
  • Save blissdev/5238375 to your computer and use it in GitHub Desktop.
Save blissdev/5238375 to your computer and use it in GitHub Desktop.
function valueInSet(value, set) {
var deepMatch = function(v){ return v.id == value; };
var shallowMatch = function(v) { return v == value; };
return _.any(set, set[0].id ? deepMatch : shallowMatch);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment