()
| 241 | let pendingBodyError = null; |
| 242 | |
| 243 | const maxBodyLengthError = () => |
| 244 | new AxiosError( |
| 245 | 'Request body larger than maxBodyLength limit', |
| 246 | AxiosError.ERR_BAD_REQUEST, |
| 247 | config, |
| 248 | request |
| 249 | ); |
| 250 | |
| 251 | try { |
| 252 | // HTTP basic authentication |
no outgoing calls
no test coverage detected