Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! tools: bump the eslint group in /tools/eslint with 6 updates
fix jsdoc
  • Loading branch information
aduh95 committed Feb 2, 2026
commit 0857dd8bc7ac9e37f9ccd781c331655fb27bdcd6
4 changes: 2 additions & 2 deletions lib/zlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,19 +295,19 @@ ZlibBase.prototype.reset = function() {
};

/**
* @this {ZlibBase}
* This is the _flush function called by the transform class,
* internally, when the last chunk has been written.
* @returns {void}
* @this {ZlibBase}
*/
ZlibBase.prototype._flush = function(callback) {
this._transform(new FastBuffer(), '', callback);
};

/**
* @this {ZlibBase}
* Force Transform compat behavior.
* @returns {void}
* @this {ZlibBase}
*/
ZlibBase.prototype._final = function(callback) {
callback();
Expand Down
Loading