You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
328 B
JavaScript

5 years ago
'use strict';
function sendUserRes(Container) {
if (!Container.user.res.headersSent) {
if (Container.options.stream) {
Container.proxy.res.pipe(Container.user.res);
} else {
Container.user.res.send(Container.proxy.resData);
}
}
return Promise.resolve(Container);
}
module.exports = sendUserRes;