( request: Request, tag: string, typedArray: $ArrayBufferView, )
| 3064 | } |
| 3065 | |
| 3066 | function serializeDebugTypedArray( |
| 3067 | request: Request, |
| 3068 | tag: string, |
| 3069 | typedArray: $ArrayBufferView, |
| 3070 | ): string { |
| 3071 | request.pendingDebugChunks++; |
| 3072 | const bufferId = request.nextChunkId++; |
| 3073 | emitTypedArrayChunk(request, bufferId, tag, typedArray, true); |
| 3074 | return serializeByValueID(bufferId); |
| 3075 | } |
| 3076 | |
| 3077 | function serializeDebugBlob(request: Request, blob: Blob): string { |
| 3078 | const model: Array<string | Uint8Array> = [blob.type]; |
no test coverage detected