Array of UTF8 bytes to be converted
Optionally index of first byte to convert, inclusive
Optionally index of last byte to convert, exclusive
Converts hexadecimal string to array of bytes.
Hexadecimal string to convert
Array of bytes
Similar to lodash's keyBy function, but creates array for each key
Input array
Indexation key
Read raw varint (without header etc.) from buffer
Array containing a varint
Number of bytes to skip before reading (default 0)
Parsed varint as a Long
Read raw varint (without header etc.) from buffer and get its length in bytes
Array containing a varint
Number of bytes to skip before reading (default 0)
Tuple containing parsed varint and its length in bytes
Converts JavaScript string to array of UTF8 bytes
String to be converted
Converts array of bytes or string to hex. If string is provided, fromByteArray is implicitly used
Bytes or string to convert
Hexadecimal string
Write number/Long to a raw varint
Value to be converted to a varint
Bytes containing value as a varint
Generated using TypeDoc
Converts array of UTF8 bytes to JavaScript string Can optionally convert only part of array: [start, end)