-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
zlib: option for engine in convenience methods #13089
zlib: option for engine in convenience methods #13089
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, thanks for this, can you add documentation? In the absence of documentation its difficult to figure out what the code is intended to do, or to review the code to see if its behaving as intended.
4406738
to
2c36616
Compare
Added option to expose engine to convenience methods Refs: nodejs#8874
2c36616
to
e5ca118
Compare
@mscdex Why is this semver-major? |
@addaleax Because of the possible change in values passed to the callback or returned by the sync function? Previously it was always |
@mscdex Yes, but it’s explicitly opt-in. The returned value is an object only when |
@addaleax Probably. Docs should be added I think, especially in case someone unknowingly passes an object with |
@AlexanderOMara To be clear, once you add docs here this should be good. 👍 |
I've added some documentation. Let me know if it needs any changes. |
doc/api/zlib.md
Outdated
@@ -301,6 +301,7 @@ ignored by the decompression classes. | |||
* `strategy` {integer} (compression only) | |||
* `dictionary` {Buffer|TypedArray|DataView} (deflate/inflate only, empty dictionary by | |||
default) | |||
* `info` {boolean} (It `true`, returns object with buffer and engine) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/It/If/
s/returns object/returns an object/
Also, perhaps put 'buffer' and 'engine' in backticks to give a hint that they are the actual object property names.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good call! Edits made.
@@ -301,6 +301,7 @@ ignored by the decompression classes. | |||
* `strategy` {integer} (compression only) | |||
* `dictionary` {Buffer|TypedArray|DataView} (deflate/inflate only, empty dictionary by | |||
default) | |||
* `info` {boolean} (If `true`, returns an object with `buffer` and `engine`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I’d drop the parentheses, and maybe add properties
at the end to be explicit
Landed in d0b1b52 |
Added option to expose engine to convenience methods Refs: #8874 PR-URL: #13089 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
Added option to expose engine to convenience methods Refs: #8874 PR-URL: #13089 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
Release team decided not to backport to v6.x. |
Added option to expose engine to convenience methods
Refs: #8874
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
Alternative to Pull Request #12939, broken into 2 separate commits.