(json: string)
| 53 | * Encodes a JSON frame (type 0, streamId 0). |
| 54 | */ |
| 55 | export function encodeJSONFrame(json: string): Uint8Array { |
| 56 | return encodeFrame(FrameType.JSON, 0, textEncoder.encode(json)) |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Encodes a raw stream chunk frame. |
no test coverage detected