Skip to content

Commit f38134b

Browse files
committed
fixup! revert whitespace change
1 parent 134fb36 commit f38134b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/internal/streams/writable.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -667,15 +667,15 @@ Writable.prototype.end = function(chunk, encoding, cb) {
667667

668668
function needFinish(state) {
669669
return (state.ending &&
670-
!state.destroyed &&
671-
state.constructed &&
672-
state.length === 0 &&
673-
!state.errored &&
674-
state.buffered.length === 0 &&
675-
!state.finished &&
676-
!state.writing &&
677-
!state.errorEmitted &&
678-
!state.closeEmitted);
670+
!state.destroyed &&
671+
state.constructed &&
672+
state.length === 0 &&
673+
!state.errored &&
674+
state.buffered.length === 0 &&
675+
!state.finished &&
676+
!state.writing &&
677+
!state.errorEmitted &&
678+
!state.closeEmitted);
679679
}
680680

681681
function callFinal(stream, state) {

0 commit comments

Comments
 (0)