Results 3 comments of Jun.li

The result is Uint8Array after encode by js-lib,But decoding in java need a byte[](Int8Array),How js-lib encode it to Int8Array?

**For js:** var source = {userId: 18662, grade: 66, nickName: 'qwe'}; var uint8Arr = msgpack.encode(source); console.log(uint8Arr instanceof Uint8Array);// print: true console.log(uint8Arr);// print:[131,166,117,115,101,114,73,100,205,72,230,165,103,114,97,100,101,66,168,110,105,99,107,78,97,109,101,163,113,119,101] **For Java:** SimpleObj obj = new SimpleObj(); obj.setUserId(18662);...