I'm using PapaParse to handle the CSV parsing for my program. My question is, how can I determine if the errors I receive from the parser are actually breaking?
In the documentation it says
Just because errors are generated does not necessarily mean that parsing failed.
If I have a blocking error (parsing failed), I would like like to redirect the user to an error page, else I would like the program to run normally.
Secondly, does the complete:
callback run even if parsing failed? Or does it run similarly to a success:
callback like in Ajax?