Whenever you use the value nil in a table, this value is not encoded correctly: input = {1, nil} b = msgpack.pack(input) >0x91 0x01 Expected: >0x92 0x01 0xC0 Any ideas how to add `nil` handling arrays?
Whenever you use the value nil in a table, this value is not encoded correctly:
input = {1, nil}
b = msgpack.pack(input)
Expected:
Any ideas how to add
nilhandling arrays?