c49de62f25
This allows it to be shared with other servers like the install server
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
'use strict';
|
|
|
|
module.exports = function contentType(type) {
|
|
return function (req, res, next) {
|
|
res.setHeader('Content-Type', type);
|
|
next();
|
|
};
|
|
};
|