Decodes a base32-encoded string into bytes.
decode(string)
string
A base32-encoded string. Must not contain any whitespace.
A Uint8Array with decoded bytes.
Throws an error if the string is not a valid base32 string.
base32.decode("AEBAH7Y")
Uint8Array [1, 2, 3, 255]