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
Hey, this repo was tagged in nodejs/node#19079 (comment)
Just making sure this is tracked and you're aware that new Buffer is runtime-deprecated in v10.
new Buffer
The text was updated successfully, but these errors were encountered:
Use Buffer.(from|alloc) instead of deprecated Buffer API
d0fa433
This also includes a dependnecy on a polyfill targeting older Node.js versions where Buffer.alloc() and Buffer.from() API is not implemented (Node.js < 4.5.0 and some 5.x versions). Fixes: indutny#102 Ref: nodejs/node#19079 Ref: https://nodejs.org/api/deprecations.html#deprecations_dep0005_buffer_constructor Ref: https://nodejs.org/api/buffer.html#buffer_class_buffer Ref: https://github.com/ChALkeR/safer-buffer/blob/master/Porting-Buffer.md
e186699
Successfully merging a pull request may close this issue.
Hey, this repo was tagged in nodejs/node#19079 (comment)
Just making sure this is tracked and you're aware that
new Buffer
is runtime-deprecated in v10.The text was updated successfully, but these errors were encountered: