()
| 5791 | }; |
| 5792 | } |
| 5793 | function throwIfAborted(state) { |
| 5794 | if (state.aborted) { |
| 5795 | throw new DOMException("The operation was aborted.", "AbortError"); |
| 5796 | } |
| 5797 | } |
| 5798 | function bodyMixinMethods(instance) { |
| 5799 | const methods = { |
| 5800 | blob() { |
| 5801 | return consumeBody(this, (bytes) => { |
| 5802 | let mimeType = bodyMimeType(this); |
| 5803 | if (mimeType === null) { |
| 5804 | mimeType = ""; |
| 5805 | } else if (mimeType) { |
| 5806 | mimeType = serializeAMimeType(mimeType); |
nothing calls this directly
no test coverage detected