File tree 5 files changed +20
-20
lines changed
5 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -1319,9 +1319,9 @@ class Parser extends stream.Transform {
1319
1319
return ;
1320
1320
}
1321
1321
const err = this . api . parse ( buf , false , ( record ) => {
1322
- this . push . call ( this , record ) ;
1322
+ this . push ( record ) ;
1323
1323
} , ( ) => {
1324
- this . push . call ( this , null ) ;
1324
+ this . push ( null ) ;
1325
1325
} ) ;
1326
1326
if ( err !== undefined ) {
1327
1327
this . state . stop = true ;
@@ -1334,9 +1334,9 @@ class Parser extends stream.Transform {
1334
1334
return ;
1335
1335
}
1336
1336
const err = this . api . parse ( undefined , true , ( record ) => {
1337
- this . push . call ( this , record ) ;
1337
+ this . push ( record ) ;
1338
1338
} , ( ) => {
1339
- this . push . call ( this , null ) ;
1339
+ this . push ( null ) ;
1340
1340
} ) ;
1341
1341
callback ( err ) ;
1342
1342
}
Original file line number Diff line number Diff line change @@ -6377,9 +6377,9 @@ class Parser extends Transform {
6377
6377
return ;
6378
6378
}
6379
6379
const err = this . api . parse ( buf , false , ( record ) => {
6380
- this . push . call ( this , record ) ;
6380
+ this . push ( record ) ;
6381
6381
} , ( ) => {
6382
- this . push . call ( this , null ) ;
6382
+ this . push ( null ) ;
6383
6383
} ) ;
6384
6384
if ( err !== undefined ) {
6385
6385
this . state . stop = true ;
@@ -6392,9 +6392,9 @@ class Parser extends Transform {
6392
6392
return ;
6393
6393
}
6394
6394
const err = this . api . parse ( undefined , true , ( record ) => {
6395
- this . push . call ( this , record ) ;
6395
+ this . push ( record ) ;
6396
6396
} , ( ) => {
6397
- this . push . call ( this , null ) ;
6397
+ this . push ( null ) ;
6398
6398
} ) ;
6399
6399
callback ( err ) ;
6400
6400
}
Original file line number Diff line number Diff line change @@ -6380,9 +6380,9 @@ var csv_parse = (function (exports) {
6380
6380
return ;
6381
6381
}
6382
6382
const err = this . api . parse ( buf , false , ( record ) => {
6383
- this . push . call ( this , record ) ;
6383
+ this . push ( record ) ;
6384
6384
} , ( ) => {
6385
- this . push . call ( this , null ) ;
6385
+ this . push ( null ) ;
6386
6386
} ) ;
6387
6387
if ( err !== undefined ) {
6388
6388
this . state . stop = true ;
@@ -6395,9 +6395,9 @@ var csv_parse = (function (exports) {
6395
6395
return ;
6396
6396
}
6397
6397
const err = this . api . parse ( undefined , true , ( record ) => {
6398
- this . push . call ( this , record ) ;
6398
+ this . push ( record ) ;
6399
6399
} , ( ) => {
6400
- this . push . call ( this , null ) ;
6400
+ this . push ( null ) ;
6401
6401
} ) ;
6402
6402
callback ( err ) ;
6403
6403
}
Original file line number Diff line number Diff line change 6383
6383
return ;
6384
6384
}
6385
6385
const err = this . api . parse ( buf , false , ( record ) => {
6386
- this . push . call ( this , record ) ;
6386
+ this . push ( record ) ;
6387
6387
} , ( ) => {
6388
- this . push . call ( this , null ) ;
6388
+ this . push ( null ) ;
6389
6389
} ) ;
6390
6390
if ( err !== undefined ) {
6391
6391
this . state . stop = true ;
6398
6398
return ;
6399
6399
}
6400
6400
const err = this . api . parse ( undefined , true , ( record ) => {
6401
- this . push . call ( this , record ) ;
6401
+ this . push ( record ) ;
6402
6402
} , ( ) => {
6403
- this . push . call ( this , null ) ;
6403
+ this . push ( null ) ;
6404
6404
} ) ;
6405
6405
callback ( err ) ;
6406
6406
}
Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ class Parser extends Transform {
29
29
return ;
30
30
}
31
31
const err = this . api . parse ( buf , false , ( record ) => {
32
- this . push . call ( this , record ) ;
32
+ this . push ( record ) ;
33
33
} , ( ) => {
34
- this . push . call ( this , null ) ;
34
+ this . push ( null ) ;
35
35
} ) ;
36
36
if ( err !== undefined ) {
37
37
this . state . stop = true ;
@@ -44,9 +44,9 @@ class Parser extends Transform {
44
44
return ;
45
45
}
46
46
const err = this . api . parse ( undefined , true , ( record ) => {
47
- this . push . call ( this , record ) ;
47
+ this . push ( record ) ;
48
48
} , ( ) => {
49
- this . push . call ( this , null ) ;
49
+ this . push ( null ) ;
50
50
} ) ;
51
51
callback ( err ) ;
52
52
}
You can’t perform that action at this time.
0 commit comments