(bytes: Byte[], index: number)
| 366 | } |
| 367 | |
| 368 | function byteAt(bytes: Byte[], index: number): Byte { |
| 369 | return index >= bytes.length ? 0 : bytes[index]; |
| 370 | } |
| 371 | |
| 372 | function wordAt(bytes: Byte[], index: number, endian: Endian): number { |
| 373 | let word = 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…