(headers, body)
| 187 | }; |
| 188 | |
| 189 | const resolveBodyLength = async (headers, body) => { |
| 190 | const length = utils.toFiniteNumber(headers.getContentLength()); |
| 191 | |
| 192 | return length == null ? getBodyLength(body) : length; |
| 193 | }; |
| 194 | |
| 195 | return async (config) => { |
| 196 | let { |
no test coverage detected