I've got a buffer that
console.log(uid);
// <Buffer 04 23 81 5a 97 37 81>
console.log(uid[0]);
// 4
console.log(uid[1]);
// 35
console.log(uid.toJSON());
// [ 4, 35, 129, 90, 151, 55, 129 ]
console.log(uid.toString());
// #�Z�7�
I need the actual ocelet array (04,23,81,5a,97,37,81) as I need to output
0423815a973781
Any help on figuring out how to parse the buffer in such a manner would be greatly appreciated.