(object)
| 52435 | buffer = buffer.subarray(3); |
| 52436 | } |
| 52437 | const output = textDecoder.decode(buffer); |
| 52438 | return output; |
| 52439 | } |
| 52440 | function parseJSONFromBytes(bytes) { |
| 52441 | return JSON.parse(utf8DecodeBytes(bytes)); |
| 52442 | } |
| 52443 | function bodyMimeType(object) { |
| 52444 | const { headersList } = object[kState]; |
| 52445 | const contentType = headersList.get("content-type"); |
| 52446 | if (contentType === null) { |
| 52447 | return "failure"; |
no test coverage detected
searching dependent graphs…