Browse Source

Patch version bump

pull/306/merge 4.1.3
Sergi Almacellas Abellana 8 years ago
parent
commit
4fb911d9e3
  1. 2
      package.json
  2. 4
      papaparse.js
  3. 4
      papaparse.min.js

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "papaparse", "name": "papaparse",
"version": "4.1.2", "version": "4.1.3",
"description": "Fast and powerful CSV parser for the browser that supports web workers and streaming large files. Converts CSV to JSON and JSON to CSV.", "description": "Fast and powerful CSV parser for the browser that supports web workers and streaming large files. Converts CSV to JSON and JSON to CSV.",
"keywords": [ "keywords": [
"csv", "csv",

4
papaparse.js

@ -1,6 +1,6 @@
/*! /*!
Papa Parse Papa Parse
v4.1.2 v4.1.3
https://github.com/mholt/PapaParse https://github.com/mholt/PapaParse
*/ */
(function(root, factory) (function(root, factory)
@ -610,7 +610,7 @@
var contentRange = xhr.getResponseHeader('Content-Range'); var contentRange = xhr.getResponseHeader('Content-Range');
if (contentRange === null) { // no content range, then finish! if (contentRange === null) { // no content range, then finish!
return -1; return -1;
} }
return parseInt(contentRange.substr(contentRange.lastIndexOf('/') + 1)); return parseInt(contentRange.substr(contentRange.lastIndexOf('/') + 1));
} }
} }

4
papaparse.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save