UNPKG

166 BJavaScriptView Raw
1module.exports = function (code, msg) {
2 return {
3 sendStatusTo: function (res) {
4 res.status(code);
5 res.send(msg);
6 }
7 }
8}
\No newline at end of file