UNPKG

express-powered-by

Version:

Set the X-Powered-By header returned by Express

6 lines 139 B
module.exports = function(str) { return function expressPoweredBy(req, res, next) { res.setHeader('X-Powered-By', str); next(); }; };