Browse Source

Removed naughty semicolon and trailing comma (closes #84)

pull/93/head 3.1.2
Matthew Holt 11 years ago
parent
commit
c69c0e4285
  1. 6
      papaparse.js
  2. 4
      papaparse.min.js
  3. 2
      parse.jquery.json

6
papaparse.js

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
/*
Papa Parse
v3.1.1
v3.1.2
https://github.com/mholt/PapaParse
*/
(function(global)
@ -806,7 +806,7 @@ @@ -806,7 +806,7 @@
}
}
if (_config.header && _results.meta);
if (_config.header && _results.meta)
_results.meta.fields = _fields;
return _results;
@ -1245,7 +1245,7 @@ @@ -1245,7 +1245,7 @@
global.postMessage({
workerId: Papa.WORKER_ID,
results: Papa.parse(msg.input, msg.config),
finished: true,
finished: true
});
}
else if (msg.input instanceof File)

4
papaparse.min.js vendored

File diff suppressed because one or more lines are too long

2
parse.jquery.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "parse",
"version": "3.1.1",
"version": "3.1.2",
"title": "Papa Parse",
"description": "Powerful CSV parser that converts CSV to JSON and JSON to CSV. Supports web workers and streaming large files. Gracefully handles malformed input.",
"keywords": [

Loading…
Cancel
Save