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
Hi, I want to send message, which is a byte array. Please help me.
The text was updated successfully, but these errors were encountered:
The easiest way is using text-encoding library to encode the byte array const string = new TextDecoder(encoding).decode(uint8array);
text-encoding
const string = new TextDecoder(encoding).decode(uint8array);
The other way is modify this library to accept byte array as payload
Sorry, something went wrong.
What about receiving byte array? Currently a null string is not received. Making impossible to work with buffers
No branches or pull requests
Hi, I want to send message, which is a byte array. Please help me.
The text was updated successfully, but these errors were encountered: