Checks whether chunked is part of the encodings stack.
(te []string)
| 549 | |
| 550 | // Checks whether chunked is part of the encodings stack. |
| 551 | func chunked(te []string) bool { return len(te) > 0 && te[0] == "chunked" } |
| 552 | |
| 553 | // Checks whether the encoding is explicitly "identity". |
| 554 | func isIdentity(te []string) bool { return len(te) == 1 && te[0] == "identity" } |
no outgoing calls
no test coverage detected
searching dependent graphs…