(h http.Header)
| 552 | } |
| 553 | |
| 554 | func cloneHeader(h http.Header) http.Header { |
| 555 | hh := make(http.Header) |
| 556 | copyHeader(hh, h) |
| 557 | return hh |
| 558 | } |
| 559 | |
| 560 | func cloneHeaderExcluding(h http.Header, excludeList map[string]bool) http.Header { |
| 561 | hh := make(http.Header) |
no test coverage detected
searching dependent graphs…