Skip to content

Commit 7ebc47b

Browse files
committed
fixup
Signed-off-by: Matteo Collina <[email protected]>
1 parent ed9e709 commit 7ebc47b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/streams/end-of-stream.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ const nop = () => {};
5757
function bindAsyncResource(fn, type) {
5858
AsyncResource ??= require('async_hooks').AsyncResource;
5959
const resource = new AsyncResource(type);
60-
return function (...args) {
60+
return function(...args) {
6161
return resource.runInAsyncScope(fn, this, ...args);
62-
}
62+
};
6363
}
6464

6565
function eos(stream, options, callback) {

0 commit comments

Comments
 (0)