(rawTrailers)
| 9533 | const contentLengthError = validatePartialResponseContentLength(headers, range, statusCode, this.retryCount); |
| 9534 | if (contentLengthError != null) { |
| 9535 | this.abort(contentLengthError); |
| 9536 | return false; |
| 9537 | } |
| 9538 | const { start, size, end = size - 1 } = range; |
| 9539 | assert( |
| 9540 | start != null && Number.isFinite(start), |
| 9541 | "content-range mismatch" |
nothing calls this directly
no test coverage detected