Turn an `ArrayBuffer` into a string of hexadecimal characters.
npm install array-buffer-to-hexTurn an ArrayBuffer into a string of hexadecimal characters.
``sh`
npm install --save array-buffer-to-hex
`js
const arrayBufferToHex = require('array-buffer-to-hex')
const randomData = crypto.getRandomValues(new Uint8Array(16)).buffer
const string = arrayBufferToHex(randomData)
console.log(string)
//=> "a2c57b9bc22056336ce5a3ec917819e0"
``
Returns a new string with the hexadecimal content from the array buffer.