How can i convert buffer data coming from fingerprint capture to byte array in nodejs
<Buffer ff d8 ff e0 00 10 4a 46 49 46 00 01 01 ...>
How can i convert buffer data coming from fingerprint capture to byte array in nodejs
<Buffer ff d8 ff e0 00 10 4a 46 49 46 00 01 01 ...>
var arrByte = Uint8Array.from(data)
Also, see this similar question and the docs for Buffer.