Weird64 API - v0.1.0
    Preparing search index...

    Function decodeBooleans

    • 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.

      Parameters

      • encoded: string

        A valid Weird64 value.

      • charset: string = DEFAULT_CHARSET

        The same 64-character alphabet used during encoding.

      Returns boolean[]

      The decoded bits represented as booleans.

      decodeBooleans('s'); // [true, false, true]
      

      RangeError if the character set or encoded value is invalid.