eHealthAfrica/direct-delivery-dashboard

View on GitHub
couchdb/app/deliveries/_design/drivers/views/by_state/map.js

Summary

Maintainability
A
0 mins
Test Coverage
function(doc) {
  if (doc.doc_type === 'driver') {
    emit(doc.state);
  }
}