-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
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
docs: Supplement docs for Writable and Transform streams #142
Conversation
Slightly fix and supplement the documentation for Writable#write and Transform#transform methods. Make it more consistent. Mention passing 'buffer' as an encoding param in case chunk is a Buffer.
nodejs/node-v0.x-archive#8769 - the same changes for joyent/node |
I'm down with this, LGTM so I'll merge, thanks @wizardzloy and sorry for the delay |
nope, too far removed from the v1.x branch so it's too messy to pull this in. @wizardzloy could you please either rebase against the io.js/v1.x branch or re-submit these changes again from scratch? |
Slightly fix and supplement the documentation for Writable#write and Transform#transform methods. Make it more consistent. Mention passing 'buffer' as an encoding param in case chunk is a Buffer. PR: #142 Reviewed-by: Bert Belder <bertbelder@gmail.com> Reviewed-by: Rod Vagg <rod@vagg.org>
lgtm & thanks. 68a2d8f |
@piscisaureus how did you merge this? my git-fu is lacking and I couldn't get this to work cleanly enough to do quickly. |
napi: Remove napi_set_function_name since not all engines can rename functions
Merging based on marja@ request.
Merging based on marja@ request.
Merging based on marja@ request.
Slightly fix and supplement the documentation for Writable#write and
Transform#transform methods. Make it more consistent. Mention
passing 'buffer' as an encoding param in case chunk is a Buffer.