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.