Skip to content

Commit 5381353

Browse files
committed
Fix comment
1 parent 975707a commit 5381353

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

functions/strings/str_getcsv.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ function str_getcsv(input, delimiter, enclosure, escape) {
1414
str_getcsv('row1cell1,"row1,cell2",row1cell3', null, null, '"');
1515
['row1cell1', 'row1,cell2', 'row1cell3']
1616
17-
str_getcsv('"row2""cell1",row2cell2,"row2""""cell3"'
17+
str_getcsv('"row2""cell1",row2cell2,"row2""""cell3"');
1818
['row2"cell1', 'row2cell2', 'row2""cell3']
1919
20-
// str_getcsv('row1cell1,"row1,cell2","row1"",""cell3"', null, null, '"');
20+
str_getcsv('row1cell1,"row1,cell2","row1"",""cell3"', null, null, '"');
2121
['row1cell1', 'row1,cell2', 'row1","cell3'];
2222
2323
Should also test newlines within

0 commit comments

Comments
 (0)