|
5 years ago | |
---|---|---|
.. | ||
node_modules | 5 years ago | |
HISTORY.md | 5 years ago | |
LICENSE | 5 years ago | |
index.js | 5 years ago | |
package.json | 5 years ago | |
readme.md | 5 years ago |
#http-assert
Assert with status codes. Like ctx.throw() in Koa, but with a guard.
##Example
var assert = require('http-assert');
var ok = require('assert');
try {
assert(username == 'fjodor', 401, 'authentication failed');
} catch (err) {
ok(err.status == 401);
ok(err.message == 'authentication failed');
ok(err.expose);
}
##Licence MIT