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 need a little bit of guidance:
wire.read(length, function(err, res) { // result contains a buffer of bytes });
taking in consideration this function, how can I return result value to be used in the code outside of this function?
something like: var returnedValue = wire.read(length, function(err, res){ return res})
Thank you!
The text was updated successfully, but these errors were encountered:
I'd recommend using Promises if you can't use the callback block.
Sorry, something went wrong.
No branches or pull requests
Hi,
I need a little bit of guidance:
wire.read(length, function(err, res) { // result contains a buffer of bytes });
taking in consideration this function, how can I return result value to be used in the code outside of this function?
something like: var returnedValue = wire.read(length, function(err, res){ return res})
Thank you!
The text was updated successfully, but these errors were encountered: