File tree 1 file changed +7
-26
lines changed
1 file changed +7
-26
lines changed Original file line number Diff line number Diff line change 1
- var Stream = require ( 'stream' ) ;
1
+ var through = require ( 'through' ) ;
2
+ var duplexer = require ( 'duplexer' ) ;
3
+ var split = require ( 'split' ) ;
2
4
3
5
module . exports = function ( ) {
4
- var out = new Stream ;
5
- out . writable = true ;
6
- var buffered = '' ;
6
+ return duplexer ( split ( ) , through ( write ) ) ;
7
7
8
- out . write = function ( buf ) {
9
- var s = buffered + String ( buf ) ;
10
- var lines = s . split ( '\n' ) ;
11
- for ( var i = 0 ; i < lines . length - 1 ; i ++ ) {
12
- console . log ( lines [ i ] ) ;
13
- }
14
- buffered = lines [ i ] ;
15
- } ;
16
-
17
- out . destroy = function ( ) {
18
- out . writable = false ;
19
- out . emit ( 'close' ) ;
20
- } ;
21
-
22
- out . end = function ( msg ) {
23
- if ( msg !== undefined ) out . write ( msg ) ;
24
- if ( buffered ) console . log ( buffered ) ;
25
- out . writable = false ;
26
- out . emit ( 'close' ) ;
27
- } ;
28
-
29
- return out ;
8
+ function write ( line ) {
9
+ console . log ( line ) ;
10
+ }
30
11
} ;
You can’t perform that action at this time.
0 commit comments