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
There are two small mistakes in the sample code in readme.md.
var g = new function()
{
var delimiter = ","; // need to define delimiter first
this.textdata = m.notChar('\n\r"' + delimiter);
...
}
console.log(parser(input));
the variable delimiter is not defined;
last line should be parser, not parse.
The text was updated successfully, but these errors were encountered:
There are two small mistakes in the sample code in readme.md.
parser
, notparse
.The text was updated successfully, but these errors were encountered: