(value, type2)
| 54160 | this.paused = false; |
| 54161 | this.resume = this.resume.bind(this); |
| 54162 | this.bytesRead = 0; |
| 54163 | this.keepAlive = ""; |
| 54164 | this.contentLength = ""; |
| 54165 | this.connection = ""; |
| 54166 | this.maxResponseSize = client[kMaxResponseSize]; |
| 54167 | } |
| 54168 | setTimeout(value, type2) { |
| 54169 | this.timeoutType = type2; |
| 54170 | if (value !== this.timeoutValue) { |
| 54171 | timers.clearTimeout(this.timeout); |
| 54172 | if (value) { |
| 54173 | this.timeout = timers.setTimeout(onParserTimeout, value, this); |
| 54174 | if (this.timeout.unref) { |
| 54175 | this.timeout.unref(); |
| 54176 | } |
| 54177 | } else { |
| 54178 | this.timeout = null; |
| 54179 | } |
| 54180 | this.timeoutValue = value; |
| 54181 | } else if (this.timeout) { |
| 54182 | if (this.timeout.refresh) { |
| 54183 | this.timeout.refresh(); |
no test coverage detected