()
| 316 | } |
| 317 | |
| 318 | get entries () { |
| 319 | const headers = {} |
| 320 | |
| 321 | if (this.headersMap.size !== 0) { |
| 322 | for (const { name, value } of this.headersMap.values()) { |
| 323 | headers[name] = value |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | return headers |
| 328 | } |
| 329 | |
| 330 | rawValues () { |
| 331 | return this.headersMap.values() |
no test coverage detected