File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ var O_SYNC = constants.O_SYNC || 0;
50
50
var O_TRUNC = constants . O_TRUNC || 0 ;
51
51
var O_WRONLY = constants . O_WRONLY || 0 ;
52
52
53
- var isWindows = process . platform === 'win32'
53
+ var isWindows = process . platform === 'win32' ;
54
54
55
55
fs . Stats = binding . Stats ;
56
56
@@ -1164,7 +1164,7 @@ var ReadStream = fs.ReadStream = function(path, options) {
1164
1164
}
1165
1165
1166
1166
if ( this . fd !== null ) {
1167
- process . nextTick ( function ( ) {
1167
+ process . nextTick ( function ( ) {
1168
1168
self . _read ( ) ;
1169
1169
} ) ;
1170
1170
return ;
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ Interface.prototype._setRawMode = function(mode) {
145
145
if ( typeof this . input . setRawMode === 'function' ) {
146
146
return this . input . setRawMode ( mode ) ;
147
147
}
148
- }
148
+ } ;
149
149
150
150
151
151
Interface . prototype . prompt = function ( preserveCursor ) {
@@ -656,8 +656,9 @@ Interface.prototype._ttyWrite = function(s, key) {
656
656
self . pause ( ) ;
657
657
self . emit ( 'SIGCONT' ) ;
658
658
}
659
- // explictly re-enable "raw mode" and move the cursor to the correct
660
- // position. See https://github.com/joyent/node/issues/3295.
659
+ // explictly re-enable "raw mode" and move the cursor to
660
+ // the correct position.
661
+ // See https://github.com/joyent/node/issues/3295.
661
662
self . _setRawMode ( true ) ;
662
663
self . _refreshLine ( ) ;
663
664
} ;
You can’t perform that action at this time.
0 commit comments