We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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")
The text was updated successfully, but these errors were encountered:
Close this issue, we have Buffer.from
Buffer.from
Sorry, something went wrong.
Yes the point of the issue is to do that change. It's not done. Is it ?
Successfully merging a pull request may close this issue.
new Buffer("381905","hex")
instead ofnew Buffer([0x38,0x19,0x05],"hex")
Kind of shorter and clearer.
The text was updated successfully, but these errors were encountered: