| 3 | |
| 4 | /** @hidden */ |
| 5 | export interface BufferPosition { |
| 6 | buf: Uint8Array; |
| 7 | pos: number; |
| 8 | } |
| 9 | |
| 10 | function toNum(low: number, high: number): number { |
| 11 | return (high >>> 0) * 0x100000000 + (low >>> 0); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…