Skip to content

Instantly share code, notes, and snippets.

@nisbus
Created June 14, 2012 22:44
Show Gist options
  • Save nisbus/2933466 to your computer and use it in GitHub Desktop.
Save nisbus/2933466 to your computer and use it in GitHub Desktop.
by today couchdb map
function(doc) {
var d = new Date(doc.date);
var today = new Date();
var d1 = d.toDateString();
var d2 = today.toDateString();
if(d1 == d2){
emit(doc.strategy, doc);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment