(writer, value)
| 11 | return "0x"; |
| 12 | } |
| 13 | encode(writer, value) { |
| 14 | value = getBytesCopy(value); |
| 15 | let length = writer.writeValue(value.length); |
| 16 | length += writer.writeBytes(value); |
| 17 | return length; |
| 18 | } |
| 19 | decode(reader) { |
| 20 | return reader.readBytes(reader.readIndex(), true); |
| 21 | } |
nothing calls this directly
no test coverage detected