File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed
Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -635,7 +635,7 @@ const transform = function(original_options = {}) {
635635 // Skip if remaining buffer can be an escaped quote
636636 quoting ? ( ( escape === null ? 0 : escape . length ) + quote . length ) : 0 ,
637637 // Skip if remaining buffer can be record delimiter following the closing quote
638- quoting ? ( quote . length ) : 0 ,
638+ quoting ? ( quote . length + recordDelimiterMaxLength ) : 0 ,
639639 ) ;
640640 return numOfCharLeft < requiredLength ;
641641 } ,
Original file line number Diff line number Diff line change @@ -633,7 +633,7 @@ const transform = function(original_options = {}) {
633633 // Skip if remaining buffer can be an escaped quote
634634 quoting ? ( ( escape === null ? 0 : escape . length ) + quote . length ) : 0 ,
635635 // Skip if remaining buffer can be record delimiter following the closing quote
636- quoting ? ( quote . length ) : 0 ,
636+ quoting ? ( quote . length + recordDelimiterMaxLength ) : 0 ,
637637 ) ;
638638 return numOfCharLeft < requiredLength ;
639639 } ,
Original file line number Diff line number Diff line change @@ -5691,7 +5691,7 @@ const transform = function(original_options = {}) {
56915691 // Skip if remaining buffer can be an escaped quote
56925692 quoting ? ( ( escape === null ? 0 : escape . length ) + quote . length ) : 0 ,
56935693 // Skip if remaining buffer can be record delimiter following the closing quote
5694- quoting ? ( quote . length ) : 0 ,
5694+ quoting ? ( quote . length + recordDelimiterMaxLength ) : 0 ,
56955695 ) ;
56965696 return numOfCharLeft < requiredLength ;
56975697 } ,
Original file line number Diff line number Diff line change @@ -2601,7 +2601,7 @@ const transform = function(original_options = {}) {
26012601 // Skip if remaining buffer can be an escaped quote
26022602 quoting ? ( ( escape === null ? 0 : escape . length ) + quote . length ) : 0 ,
26032603 // Skip if remaining buffer can be record delimiter following the closing quote
2604- quoting ? ( quote . length ) : 0 ,
2604+ quoting ? ( quote . length + recordDelimiterMaxLength ) : 0 ,
26052605 ) ;
26062606 return numOfCharLeft < requiredLength ;
26072607 } ,
Original file line number Diff line number Diff line change @@ -5694,7 +5694,7 @@ var csv_parse = (function (exports) {
56945694 // Skip if remaining buffer can be an escaped quote
56955695 quoting ? ( ( escape === null ? 0 : escape . length ) + quote . length ) : 0 ,
56965696 // Skip if remaining buffer can be record delimiter following the closing quote
5697- quoting ? ( quote . length ) : 0 ,
5697+ quoting ? ( quote . length + recordDelimiterMaxLength ) : 0 ,
56985698 ) ;
56995699 return numOfCharLeft < requiredLength ;
57005700 } ,
Original file line number Diff line number Diff line change @@ -2604,7 +2604,7 @@ var csv_parse_sync = (function (exports) {
26042604 // Skip if remaining buffer can be an escaped quote
26052605 quoting ? ( ( escape === null ? 0 : escape . length ) + quote . length ) : 0 ,
26062606 // Skip if remaining buffer can be record delimiter following the closing quote
2607- quoting ? ( quote . length ) : 0 ,
2607+ quoting ? ( quote . length + recordDelimiterMaxLength ) : 0 ,
26082608 ) ;
26092609 return numOfCharLeft < requiredLength ;
26102610 } ,
Original file line number Diff line number Diff line change 56975697 // Skip if remaining buffer can be an escaped quote
56985698 quoting ? ( ( escape === null ? 0 : escape . length ) + quote . length ) : 0 ,
56995699 // Skip if remaining buffer can be record delimiter following the closing quote
5700- quoting ? ( quote . length ) : 0 ,
5700+ quoting ? ( quote . length + recordDelimiterMaxLength ) : 0 ,
57015701 ) ;
57025702 return numOfCharLeft < requiredLength ;
57035703 } ,
Original file line number Diff line number Diff line change 26072607 // Skip if remaining buffer can be an escaped quote
26082608 quoting ? ( ( escape === null ? 0 : escape . length ) + quote . length ) : 0 ,
26092609 // Skip if remaining buffer can be record delimiter following the closing quote
2610- quoting ? ( quote . length ) : 0 ,
2610+ quoting ? ( quote . length + recordDelimiterMaxLength ) : 0 ,
26112611 ) ;
26122612 return numOfCharLeft < requiredLength ;
26132613 } ,
You can’t perform that action at this time.
0 commit comments