Skip to content

Commit ec54567

Browse files
committed
todo
1 parent 8c6ec2c commit ec54567

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

functions/strings/str_getcsv.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ example 5: str_getcsv('"row2""cell1",row2cell2,"row2""""cell3"'
1515
returns 5: ['row2"cell1', 'row2cell2', 'row2""cell3']
1616
example 6: str_getcsv('row1cell1,"row1,cell2","row1"",""cell3"', null, null, '"');
1717
returns 6: ['row1cell1', 'row1,cell2', 'row1","cell3'];
18+
Should also test newlines within
1819
*/
1920
var i, inpLen, output = [];
2021
var backwards = function(str) { // We need to go backwards to simulate negative look-behind (don't split on

0 commit comments

Comments
 (0)