You can not 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
451 B

"use strict";
module.exports = function hidePoweredBy(options) {
var _a = (options || {}).setTo, setTo = _a === void 0 ? null : _a;
if (setTo) {
return function hidePoweredBy(_req, res, next) {
res.setHeader('X-Powered-By', setTo);
next();
};
}
else {
return function hidePoweredBy(_req, res, next) {
res.removeHeader('X-Powered-By');
next();
};
}
};