eHealthAfrica/direct-delivery-dashboard

View on GitHub
couchdb/app/deliveries/_design/delivery-rounds/filters/within_date

Summary

Maintainability
Test Coverage
function (doc, req) {
  var reqDate = new Date(req.query.date);
  return ((doc.doc_type && doc.doc_type === 'deliveryRound' )
  && ((new Date(doc.startDate) <= reqDate) && (reqDate <= new Date(doc.endDate))));
}