| 217 | * @return {Uint8Array} |
| 218 | */ |
| 219 | export const encodeRelativePosition = rpos => { |
| 220 | const encoder = encoding.createEncoder() |
| 221 | writeRelativePosition(encoder, rpos) |
| 222 | return encoding.toUint8Array(encoder) |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * @param {decoding.Decoder} decoder |
nothing calls this directly
no test coverage detected
searching dependent graphs…