Browse Source

Rewrite to make phantom happy.

pull/519/head
Adi Roiban 7 years ago
parent
commit
f00137a5ac
  1. 2
      papaparse.js

2
papaparse.js

@ -326,7 +326,7 @@ @@ -326,7 +326,7 @@
return;
if (typeof _config.delimiter === 'string'
&& !Papa.BAD_DELIMITERS.filter(function(value) { return _config.delimiter.includes(value); }).length)
&& !Papa.BAD_DELIMITERS.filter(function(value) { return _config.delimiter.indexOf(value) !== -1; }).length)
{
// We have a string as config and it does not contains any
// of the invalid delimiters.

Loading…
Cancel
Save