()
| 151 | } |
| 152 | |
| 153 | _reset(): void { |
| 154 | this.readyState = this.UNSENT; |
| 155 | this.responseHeaders = undefined; |
| 156 | this.status = 0; |
| 157 | delete this.responseURL; |
| 158 | |
| 159 | this._requestId = null; |
| 160 | |
| 161 | this._cachedResponse = undefined; |
| 162 | this._hasError = false; |
| 163 | this._headers = {}; |
| 164 | this._response = ''; |
| 165 | this._responseType = ''; |
| 166 | this._sent = false; |
| 167 | this._lowerCaseResponseHeaders = {}; |
| 168 | |
| 169 | this._clearSubscriptions(); |
| 170 | this._timedOut = false; |
| 171 | } |
| 172 | |
| 173 | get responseType(): ResponseType { |
| 174 | return this._responseType; |
no test coverage detected