(text: string)
| 34 | |
| 35 | // Helper to encode text to Uint8Array |
| 36 | function encode(text: string): Uint8Array { |
| 37 | return new TextEncoder().encode(text) |
| 38 | } |
| 39 | |
| 40 | // Export helpers for use in components and SSR routes |
| 41 | export { encode, createDelayedStream, concatBytes } |
no outgoing calls
no test coverage detected