lib/middleware/host.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function (host) {
  return function (req, res, next) {
    req.headers.host = host
    next()
  }
}