CML
    Preparing search index...

    Function encodeText

    • Converts a string to a Uint8Array. Similar to TextEncoder.encode but with a fallback for environments that don't support TextEncoder.

      Parameters

      • data: string

        The string to encode.

      Returns Uint8Array

      The Uint8Array representation of the string.

      const str = 'hello world'
      const encoded = new Uint8Array([
      104, 101, 108, 108,
      111, 32, 119, 111,
      114, 108, 100
      ])

      deepEqual(encodeText(str), encoded)