We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 938ada4 commit 0857dd8Copy full SHA for 0857dd8
lib/zlib.js
@@ -295,19 +295,19 @@ ZlibBase.prototype.reset = function() {
295
};
296
297
/**
298
- * @this {ZlibBase}
299
* This is the _flush function called by the transform class,
300
* internally, when the last chunk has been written.
301
* @returns {void}
+ * @this {ZlibBase}
302
*/
303
ZlibBase.prototype._flush = function(callback) {
304
this._transform(new FastBuffer(), '', callback);
305
306
307
308
309
* Force Transform compat behavior.
310
311
312
ZlibBase.prototype._final = function(callback) {
313
callback();
0 commit comments