Decodes a hexadecimal string into an ArrayBuffer.
The hexadecimal string to decode.
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) Copy
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)
Decodes a hexadecimal string into an ArrayBuffer.