@returns {Number}
()
| 130 | |
| 131 | /** @returns {Number} */ |
| 132 | readShort() { |
| 133 | const result = this.buf.readUInt16BE(this.offset); |
| 134 | this.offset += 2; |
| 135 | return result; |
| 136 | } |
| 137 | |
| 138 | readByte() { |
| 139 | const result = this.buf.readUInt8(this.offset); |
no outgoing calls
no test coverage detected