()
| 188 | } |
| 189 | |
| 190 | readShortBytes() { |
| 191 | const length = this.readShort(); |
| 192 | if (length < 0) { |
| 193 | return null; |
| 194 | } |
| 195 | this.checkOffset(length); |
| 196 | return this.read(length); |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * Reads an associative array of strings as keys and bytes as values |
no test coverage detected