(flow)
| 2190 | function responseHeader(regex){ |
| 2191 | regex = new RegExp(regex, "i"); |
| 2192 | function responseHeaderFilter(flow){ |
| 2193 | return (flow.response && flowutils.ResponseUtils.match_header(flow.response, regex)); |
| 2194 | } |
| 2195 | responseHeaderFilter.desc = "resp. header matches " + regex; |
| 2196 | return responseHeaderFilter; |
| 2197 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…