Skip to content

Commit c69c0e4

Browse files
committed
Removed naughty semicolon and trailing comma (closes #84)
1 parent ee1e667 commit c69c0e4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

papaparse.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
Papa Parse
3-
v3.1.1
3+
v3.1.2
44
https://github.com/mholt/PapaParse
55
*/
66
(function(global)
@@ -806,7 +806,7 @@
806806
}
807807
}
808808

809-
if (_config.header && _results.meta);
809+
if (_config.header && _results.meta)
810810
_results.meta.fields = _fields;
811811

812812
return _results;
@@ -1245,7 +1245,7 @@
12451245
global.postMessage({
12461246
workerId: Papa.WORKER_ID,
12471247
results: Papa.parse(msg.input, msg.config),
1248-
finished: true,
1248+
finished: true
12491249
});
12501250
}
12511251
else if (msg.input instanceof File)

0 commit comments

Comments
 (0)