A function to reject empty values with an http exception
npm install http-reject-empty
$ npm install --save http-reject-empty
`
Usage
`js
const empty = require('http-reject-empty');
const promise = User.find({}) // find a user in the db
.then(empty);
``