(mimeType: string)
| 412 | }; |
| 413 | |
| 414 | const isGenericMimeType = (mimeType: string): boolean => |
| 415 | normalizeContentType(mimeType) === "application/octet-stream"; |
| 416 | |
| 417 | const startsWithBytes = (bytes: Uint8Array, prefix: readonly number[]): boolean => |
| 418 | prefix.every((byte, index) => bytes[index] === byte); |
no test coverage detected