You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are you using ssh2 directly? If so, can you show a complete minimal example in JS that reproduces the problem? Streams should always emit Buffers unless you call something like stream.setEncoding().
I am implementing a server, and logging data arriving from a stream after a call to
By that I mean performing a
typeof
on the object fromstream.on('data', data => {console.log(typeof data)})
returnsstring
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: