Browse Source

Merge pull request #1 from elChapoSing/elChapoSing-fix-737

removed forced validation of newline character
pull/740/head
elChapoSing 6 years ago committed by GitHub
parent
commit
48a3dbd9e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      papaparse.js

4
papaparse.js

@ -1419,10 +1419,6 @@ License: MIT @@ -1419,10 +1419,6 @@ License: MIT
|| Papa.BAD_DELIMITERS.indexOf(comments) > -1)
comments = false;
// Newline must be valid: \r, \n, or \r\n
if (newline !== '\n' && newline !== '\r' && newline !== '\r\n')
newline = '\n';
// We're gonna need these at the Parser scope
var cursor = 0;
var aborted = false;

Loading…
Cancel
Save