UNPKG

rocky

Version:

Full-featured, middleware-oriented, hackable HTTP and WebSocket proxy

9 lines (8 loc) 196 B
module.exports = function (headers) { return function (req, res, next) { Object.keys(headers).forEach(function (header) { req.headers[header] = headers[header] }) next() } }