Skip to content

Commit

Permalink
chore: apply automated lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Nov 13, 2023
1 parent 091ddcd commit 18a13ec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/runtime/node/stream/writable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ class _Writable extends EventEmitter implements stream.Writable {
typeof arg2 === "function"
? arg2
: typeof arg3 === "function"
? arg3
: undefined;
? arg3
: undefined;
this._write(chunk, encoding, cb);
return true;
}
Expand All @@ -93,10 +93,10 @@ class _Writable extends EventEmitter implements stream.Writable {
typeof arg1 === "function"
? arg1
: typeof arg2 === "function"
? arg2
: typeof arg3 === "function"
? arg3
: undefined;
? arg2
: typeof arg3 === "function"
? arg3
: undefined;
if (this.writableEnded) {
if (callback) {
callback();
Expand Down

0 comments on commit 18a13ec

Please sign in to comment.