For a string like `BBBBBBBh`, jspack and Python give different sizes: ```shell FMT="BBBBBBBh" $ node -e "console.log(require('jspack').jspack.CalcLength('$FMT'))" 9 $ python -c "import struct; print(struct.calcsize('$FMT'))" 10 ```
For a string like
BBBBBBBh, jspack and Python give different sizes: