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