(h http.Header, excludeList map[string]bool)
| 558 | } |
| 559 | |
| 560 | func cloneHeaderExcluding(h http.Header, excludeList map[string]bool) http.Header { |
| 561 | hh := make(http.Header) |
| 562 | copyHeaderExcluding(hh, h, excludeList) |
| 563 | return hh |
| 564 | } |
| 565 | |
| 566 | type ( |
| 567 | flushWriter interface { |
no test coverage detected
searching dependent graphs…