eHealthAfrica/direct-delivery-dashboard

View on GitHub
couchdb/app/deliveries/_design/delivery-rounds/views/by-state-and-end-date/map.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Created by ehealthafrica on 2/12/15.
 */

function(doc) {
  if (doc.doc_type === 'deliveryRound') {
    emit([doc.state, doc.endDate]);
  }
}