Open rom1504 opened 8 years ago
new Buffer("381905","hex") instead of new Buffer([0x38,0x19,0x05],"hex") Kind of shorter and clearer.
new Buffer("381905","hex")
new Buffer([0x38,0x19,0x05],"hex")
Close this issue, we have Buffer.from
Buffer.from
Yes the point of the issue is to do that change. It's not done. Is it ?
new Buffer("381905","hex")
instead ofnew Buffer([0x38,0x19,0x05],"hex")
Kind of shorter and clearer.