(bytes: Uint8Array)
| 2 | import { bytesDecode, decodeUTF32, parseCharsetFromContentType, readRawContent } from "./encoding"; |
| 3 | |
| 4 | const blobFromBytes = (bytes: Uint8Array) => |
| 5 | new Blob([bytes.buffer.slice(bytes.byteOffset, bytes.byteOffset + bytes.byteLength) as ArrayBuffer]); |
| 6 | |
| 7 | const expectReadBlobContentDecodesAs = async ( |
| 8 | bytes: Uint8Array, |
no test coverage detected