File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ exports.setEncodingImpl = function(s) {
10
10
} ;
11
11
} ;
12
12
13
- exports . onData = function ( r ) {
13
+ exports . onData = function ( s ) {
14
14
return function ( f ) {
15
15
return function ( ) {
16
16
s . on ( 'data' , function ( chunk ) {
@@ -20,7 +20,7 @@ exports.onData = function(r) {
20
20
} ;
21
21
} ;
22
22
23
- exports . onEnd = function ( r ) {
23
+ exports . onEnd = function ( s ) {
24
24
return function ( f ) {
25
25
return function ( ) {
26
26
s . on ( 'end' , function ( ) {
@@ -30,7 +30,7 @@ exports.onEnd = function(r) {
30
30
} ;
31
31
} ;
32
32
33
- exports . onError = function ( r ) {
33
+ exports . onError = function ( s ) {
34
34
return function ( f ) {
35
35
return function ( ) {
36
36
s . on ( 'error' , function ( ) {
@@ -40,7 +40,7 @@ exports.onError = function(r) {
40
40
} ;
41
41
} ;
42
42
43
- exports . onClose = function ( r ) {
43
+ exports . onClose = function ( s ) {
44
44
return function ( f ) {
45
45
return function ( ) {
46
46
s . on ( 'close' , function ( ) {
You can’t perform that action at this time.
0 commit comments