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
util.pump
util.pump was deprecated since nodejs v0.10, and there is an ongoing discussion on removing that in the next major version: nodejs/node#2531.
The line in question: /lib/action.js#L50:
util.pump(html, rep);
should be probably replaced with
html.pipe(rep);
I am not making a pull request because I am not a user of this package and have not tested it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
util.pump
was deprecated since nodejs v0.10, and there is an ongoing discussion on removing that in the next major version: nodejs/node#2531.The line in question: /lib/action.js#L50:
should be probably replaced with
I am not making a pull request because I am not a user of this package and have not tested it.
The text was updated successfully, but these errors were encountered: