Skip to content

Commit 0400373

Browse files
committed
Minor version bump, 4.1.1
1 parent 3bd5c47 commit 0400373

File tree

5 files changed

+48
-49
lines changed

5 files changed

+48
-49
lines changed

bower.json

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
{
2-
"name": "papaparse",
3-
"main": "papaparse.js",
4-
"homepage": "http://papaparse.com",
5-
"authors": [
6-
"Matthew Holt"
7-
],
8-
"description": "Fast and powerful CSV parser for the browser. Converts CSV->JSON and JSON->CSV. Supports web workers and streaming large files.",
9-
"keywords": [
10-
"csv",
11-
"parse",
12-
"parsing",
13-
"parser",
14-
"delimited",
15-
"text",
16-
"data",
17-
"auto-detect",
18-
"comma",
19-
"tab",
20-
"pipe",
21-
"file",
22-
"filereader",
23-
"stream",
24-
"worker",
25-
"workers",
26-
"ajax",
27-
"thread",
28-
"threading",
29-
"multi-threaded"
30-
],
31-
"license": "MIT",
32-
"ignore": [
33-
"**/.*",
34-
"node_modules",
35-
"bower_components",
36-
"test",
37-
"tests",
38-
"player"
39-
]
2+
"name": "papaparse",
3+
"main": "papaparse.js",
4+
"homepage": "http://papaparse.com",
5+
"authors": [
6+
"Matthew Holt"
7+
],
8+
"description": "Fast and powerful CSV parser for the browser. Converts CSV->JSON and JSON->CSV. Supports web workers and streaming large files.",
9+
"keywords": [
10+
"csv",
11+
"parse",
12+
"parsing",
13+
"parser",
14+
"delimited",
15+
"text",
16+
"data",
17+
"auto-detect",
18+
"comma",
19+
"tab",
20+
"pipe",
21+
"file",
22+
"filereader",
23+
"stream",
24+
"worker",
25+
"workers",
26+
"ajax",
27+
"thread",
28+
"threading",
29+
"multi-threaded"
30+
],
31+
"license": "MIT",
32+
"ignore": [
33+
"**/.*",
34+
"node_modules",
35+
"bower_components",
36+
"test",
37+
"tests",
38+
"player"
39+
]
4040
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "papaparse",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"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.",
55
"keywords": [
66
"csv",

papaparse.js

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
Papa Parse
3-
v4.1.0
3+
v4.1.1
44
https://github.com/mholt/PapaParse
55
*/
66
(function(global)
@@ -34,20 +34,19 @@
3434
Papa.FileStreamer = FileStreamer;
3535
Papa.StringStreamer = StringStreamer;
3636

37-
// export to Node...
38-
if (typeof module !== 'undefined' && module.exports) {
37+
if (typeof module !== 'undefined' && module.exports)
38+
{
39+
// Export to Node...
3940
module.exports = Papa;
4041
}
41-
42-
// Wireup with RequireJS
4342
else if (isFunction(global.define) && global.define.amd)
4443
{
44+
// Wireup with RequireJS
4545
global.define(function() { return Papa; });
4646
}
47-
48-
// ...or as browser global
4947
else
5048
{
49+
// ...or as browser global
5150
global.Papa = Papa;
5251
}
5352

papaparse.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

player/player.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8">
66
<link rel="stylesheet" href="player.css">
77
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
8-
<script src="../papaparse.js"></script>
8+
<script src="../papaparse.min.js"></script>
99
<script src="player.js"></script>
1010
</head>
1111
<body>

0 commit comments

Comments
 (0)