Encodes an ArrayBuffer as a hexadecimal string.
The ArrayBuffer to encode.
The hexadecimal string representation.
const data = new Uint8Array([ 160, 86, 74, 247, 96, 194, 217, 75, 150, 16, 199, 174, 112, 213, 217, 112,])const result = arrayBufferToHex(data.buffer)equal(result, 'a0564af760c2d94b9610c7ae70d5d970') Copy
const data = new Uint8Array([ 160, 86, 74, 247, 96, 194, 217, 75, 150, 16, 199, 174, 112, 213, 217, 112,])const result = arrayBufferToHex(data.buffer)equal(result, 'a0564af760c2d94b9610c7ae70d5d970')
Encodes an ArrayBuffer as a hexadecimal string.