()
| 890 | } |
| 891 | |
| 892 | function responseOnTimeout() { |
| 893 | const req = this._httpMessage; |
| 894 | if (!req) return; |
| 895 | const res = req.res; |
| 896 | if (!res) return; |
| 897 | res.emit('timeout'); |
| 898 | } |
| 899 | |
| 900 | // This function is necessary in the case where we receive the entire response |
| 901 | // from the server before we finish sending out the request. |
nothing calls this directly
no test coverage detected
searching dependent graphs…