Skip to content

Instantly share code, notes, and snippets.

@grampelberg
Created September 9, 2010 23:39
Show Gist options
  • Save grampelberg/572783 to your computer and use it in GitHub Desktop.
Save grampelberg/572783 to your computer and use it in GitHub Desktop.
function(doc, req) {
var type = null;
if ('type' in req.query)
type = req.query.type;
if (type && doc.status == type) {
return true;
} else if (!type && !('status' in doc)) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment