UNPKG

toxy

Version:

Hackable HTTP proxy to simulate server failure scenarios and network conditions

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