We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1254a3 commit 7b0292aCopy full SHA for 7b0292a
test/parallel/test-zlib-close-after-write.js
@@ -23,7 +23,7 @@
23
const common = require('../common');
24
const zlib = require('zlib');
25
26
-zlib.gzip('hello', common.mustCall(function(err, out) {
+zlib.gzip('hello', common.mustCall((err, out) => {
27
const unzip = zlib.createGunzip();
28
unzip.write(out);
29
unzip.close(common.mustCall());
0 commit comments