/http-reject-empty

A function to reject empty values with an http exception

Primary LanguageJavaScriptMIT LicenseMIT

http-reject-empty Build Status Coverage Status

A function to reject empty values with an http exception

Install

$ npm install --save http-reject-empty

Usage

const empty = require('http-reject-empty');

const promise = User.find({}) // find a user in the db
                  .then(empty);

If the promise returns a falsy value, the promise is rejected with a 404 http error

License

MIT © Noam Okman