File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ var CopyFromStream = function () {
14
14
util . inherits ( CopyFromStream , Stream ) ;
15
15
CopyFromStream . prototype . _writable = function ( ) {
16
16
return ! ( this . _finished || this . _error ) ;
17
- }
17
+ } ;
18
18
CopyFromStream . prototype . startStreamingToConnection = function ( connection ) {
19
19
if ( this . _error ) {
20
20
return ;
@@ -65,7 +65,7 @@ CopyFromStream.prototype._endIfNeedAndPossible = function () {
65
65
this . _finishedSent = true ;
66
66
this . _connection . endCopyFrom ( ) ;
67
67
}
68
- }
68
+ } ;
69
69
CopyFromStream . prototype . write = function ( string , encoding ) {
70
70
if ( this . _error || this . _finished ) {
71
71
return false ;
@@ -79,7 +79,7 @@ CopyFromStream.prototype.end = function (string, encondig) {
79
79
this . _finished = true ;
80
80
if ( string !== undefined ) {
81
81
this . _handleChunk . apply ( this , arguments ) ;
82
- } ;
82
+ }
83
83
this . _endIfNeedAndPossible ( ) ;
84
84
} ;
85
85
CopyFromStream . prototype . error = function ( error ) {
@@ -123,7 +123,7 @@ CopyToStream.prototype._outputDataChunk = function () {
123
123
} ;
124
124
CopyToStream . prototype . _readable = function ( ) {
125
125
return ! this . _finished && ! this . _error ;
126
- }
126
+ } ;
127
127
CopyToStream . prototype . error = function ( error ) {
128
128
if ( ! this . readable ) {
129
129
return false ;
You can’t perform that action at this time.
0 commit comments