(buf: ArrayBuffer, bytes: Uint8Array)
| 32 | }>; |
| 33 | |
| 34 | export function copyInto(buf: ArrayBuffer, bytes: Uint8Array): void { |
| 35 | new Uint8Array(buf, 0, bytes.byteLength).set(bytes); |
| 36 | } |
| 37 | |
| 38 | export function frameSeqToSlotToken(frameSeq: number): number { |
| 39 | const token = frameSeq & 0x7fff_ffff; |
no test coverage detected