README
arraybuffer-to-hex
Convert ArrayBuffer to hex string
Install
npm install @npmlib/arraybuffer-to-hex
Getting started
const arrayBufferToHex = require('arraybuffer-to-hex')
const buffer = new Uint8Array([4, 8, 12, 16])
console.log(arrayBufferToHex(buffer)) // "04080c10"