You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, we use String.split to parse CSVs, which isn't the best way to do it because it doesn't handle escaped values, newlines, or other variations on the CSV format (like TSV). We should use something like Papa Parse (what I use in better-react-spreadsheet) to do parsing for us.
The text was updated successfully, but these errors were encountered:
Kobra/src/blocks/DataFrame.ts
Line 18 in 73ad2c1
Right now, we use
String.split
to parse CSVs, which isn't the best way to do it because it doesn't handle escaped values, newlines, or other variations on the CSV format (like TSV). We should use something like Papa Parse (what I use inbetter-react-spreadsheet
) to do parsing for us.The text was updated successfully, but these errors were encountered: