(bytes: Uint8Array)
| 63 | } |
| 64 | |
| 65 | function cloneBytes(bytes: Uint8Array): Uint8Array { |
| 66 | return Uint8Array.from(bytes); |
| 67 | } |
| 68 | |
| 69 | function readCommandBounds(bytes: Uint8Array): Readonly<{ cmdOffset: number; cmdEnd: number }> { |
| 70 | if (bytes.byteLength < HEADER_SIZE) { |
no outgoing calls
no test coverage detected