> If the bit-length of the number to be encoded is not a multiple of 5 bits, then zero-extend the number to make its bit-length a multiple of 5. > > ⸺ https://www.crockford.com/base32.html ```javascript require("base32-decode")("E", "Crockford").byteLength // 0 ```