Skip to content

Instantly share code, notes, and snippets.

@Sigmus
Created February 9, 2014 23:17
Show Gist options
  • Save Sigmus/8907602 to your computer and use it in GitHub Desktop.
Save Sigmus/8907602 to your computer and use it in GitHub Desktop.
is property equal
var isPropEqual = function(propName) {
return function(subject) {
return function(obj) {
return obj[propName] === subject;
};
}
};
var isStatus = isPropEqual('status');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment