* Reads a BE Int and moves the offset * @returns {Number}
()
| 123 | * @returns {Number} |
| 124 | */ |
| 125 | readInt() { |
| 126 | const result = this.buf.readInt32BE(this.offset); |
| 127 | this.offset += 4; |
| 128 | return result; |
| 129 | } |
| 130 | |
| 131 | /** @returns {Number} */ |
| 132 | readShort() { |
no outgoing calls
no test coverage detected