Inist-CNRS / node-csv-string

CSV Strings & Streams for Javascript since 2012
Other
87 stars 18 forks source link

Failed to detect caret delimiter #62

Open richzw opened 2 years ago

richzw commented 2 years ago

It seems the caret delimiter could not be supported in here

                let testd = CSV.parse('a^b^c\na^b^c', '^');
                console.log(testd);

Output

[]

Is there any thing am I missing?