@svta/common-media-library
    Preparing search index...

    Function hexToArrayBuffer

    • Beta

      Decodes a hexadecimal string into an ArrayBuffer.

      Parameters

      • hex: string

        The hexadecimal string to decode.

      Returns ArrayBuffer

      The decoded ArrayBuffer.

      const hex = 'a0564af760c2d94b9610c7ae70d5d970';
      const result = hexToArrayBuffer(hex);

      const expected = new Uint8Array([
      160, 86, 74, 247,
      96, 194,
      217, 75,
      150, 16,
      199, 174, 112, 213, 217, 112,
      ]);

      deepEqual(new Uint8Array(result), expected);