()
| 63 | } |
| 64 | |
| 65 | private async toUint8Array(): Promise<Uint8Array<ArrayBuffer>> { |
| 66 | return toUint8Array(this.content); |
| 67 | } |
| 68 | |
| 69 | private async toBlob(): Promise<Blob> { |
| 70 | if (typeof Blob !== "undefined" && this.content instanceof Blob) { |
no test coverage detected