Skip to content

Commit 29a0916

Browse files
committed
fix(csv-parse): build from previus commit
1 parent 16fdb2d commit 29a0916

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

packages/csv-parse/dist/cjs/index.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

packages/csv-parse/dist/cjs/sync.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

packages/csv-parse/dist/esm/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

packages/csv-parse/dist/esm/sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

packages/csv-parse/dist/iife/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

packages/csv-parse/dist/iife/sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

packages/csv-parse/dist/umd/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5697,7 +5697,7 @@
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
},

packages/csv-parse/dist/umd/sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2607,7 +2607,7 @@
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
},

0 commit comments

Comments
 (0)