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 was trying to call unpipe to disconnect two streams previously connected but the function appears to be missing.
Code to reproduce:
const inputDevice = new midi.Input(); inputDevice.openVirtualPort('test input port'); const outputDevice = new midi.Output(); outputDevice.openVirtualPort('test output port'); const rs = midi.createReadStream(inputDevice); const ws = midi.createWriteStream(outputDevice); rs.pipe(ws); rs.unpipe(ws);
This leads to
TypeError: rs.unpipe is not a function
so I guess it is not implemented? If you could add it it would be awesome :D
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I was trying to call unpipe to disconnect two streams previously connected but the function appears to be missing.
Code to reproduce:
This leads to
so I guess it is not implemented? If you could add it it would be awesome :D
The text was updated successfully, but these errors were encountered: