UNPKG

toxy

Version:

Hackable HTTP proxy to simulate server failure scenarios and network conditions

10 lines (7 loc) 231 B
const match = require('../helpers').matchHeaders module.exports = function headers (matchHeaders) { matchHeaders = matchHeaders || {} return function headers (req, res, next) { next(null, !match(req, matchHeaders)) } }