Decodes a Weird64 value into its original sequence of bits.
Decoding is strict: unknown characters, missing sentinels, and impossible padding are rejected instead of being silently ignored.
A valid Weird64 value.
The same 64-character alphabet used during encoding.
The decoded bits represented as booleans.
decodeBooleans('s'); // [true, false, true] Copy
decodeBooleans('s'); // [true, false, true]
RangeError if the character set or encoded value is invalid.
RangeError
Decodes a Weird64 value into its original sequence of bits.
Decoding is strict: unknown characters, missing sentinels, and impossible padding are rejected instead of being silently ignored.