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
The dependency bufferjs/concat was removed in version 2.0.0. The following changes were necessary to resolve the issue.
Line 12: require('bufferjs/concat'); (original) //require('bufferjs/concat'); (changed)
require('bufferjs/concat');
//require('bufferjs/concat');
Line 154: buffer = Buffer.concat(buffer, chunk); (original) buffer = Buffer.concat([buffer, chunk]); (changed)
buffer = Buffer.concat(buffer, chunk);
buffer = Buffer.concat([buffer, chunk]);
The text was updated successfully, but these errors were encountered:
Thanks, you fixed my problem.
Sorry, something went wrong.
Alternatively, update node_modules/filternet/package.json - to change the dependency and rerun npm install.
"dependencies": { "bufferjs": "1.0.0" },
No branches or pull requests
The dependency bufferjs/concat was removed in version 2.0.0.
The following changes were necessary to resolve the issue.
Line 12:
require('bufferjs/concat');
(original)//require('bufferjs/concat');
(changed)Line 154:
buffer = Buffer.concat(buffer, chunk);
(original)buffer = Buffer.concat([buffer, chunk]);
(changed)The text was updated successfully, but these errors were encountered: