mirror of
https://github.com/zhigang1992/deployd.git
synced 2026-05-23 04:47:26 +08:00
12 lines
234 B
JavaScript
12 lines
234 B
JavaScript
module.exports = require('mdoq')
|
|
.require('mdoq-http')
|
|
.use(function (req, res, next) {
|
|
if(res.statusCode >= 400) {
|
|
var err = res.data;
|
|
res.data = undefined;
|
|
next(err);
|
|
} else {
|
|
next();
|
|
}
|
|
})
|
|
; |