Skip to content

Instantly share code, notes, and snippets.

@Seich
Created July 14, 2015 01:21
Show Gist options
  • Save Seich/6f913eb77212b37c2fe1 to your computer and use it in GitHub Desktop.
Save Seich/6f913eb77212b37c2fe1 to your computer and use it in GitHub Desktop.
var start = new Date();
start.setHours(0,0,0,0);
var end = new Date();
end.setHours(23, 59, 59, 999);
return db.query(function(doc, emit) {
emit(doc.date);
}, {
startkey: start,
endkey: end,
include_docs: true
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment