select-csv 1.1.20 → 1.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +21 -0
- package/README.md +132 -426
- package/package.json +37 -34
- package/selectcsv.js +254 -1288
package/package.json
CHANGED
|
@@ -1,34 +1,37 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "select-csv",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "
|
|
5
|
-
"keywords": [
|
|
6
|
-
"csv",
|
|
7
|
-
"parser",
|
|
8
|
-
"parse",
|
|
9
|
-
"parsing",
|
|
10
|
-
"delimited",
|
|
11
|
-
"text",
|
|
12
|
-
"data",
|
|
13
|
-
"comma",
|
|
14
|
-
"tab",
|
|
15
|
-
"pipe",
|
|
16
|
-
"file",
|
|
17
|
-
"filereader",
|
|
18
|
-
"stream",
|
|
19
|
-
"chunk",
|
|
20
|
-
"line"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "select-csv",
|
|
3
|
+
"version": "1.1.21",
|
|
4
|
+
"description": "A high-performance, memory-efficient CSV parser for Node.js. Supports streaming large files via chunks and row offsets with zero dependencies.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"csv",
|
|
7
|
+
"parser",
|
|
8
|
+
"parse",
|
|
9
|
+
"parsing",
|
|
10
|
+
"delimited",
|
|
11
|
+
"text",
|
|
12
|
+
"data",
|
|
13
|
+
"comma",
|
|
14
|
+
"tab",
|
|
15
|
+
"pipe",
|
|
16
|
+
"file",
|
|
17
|
+
"filereader",
|
|
18
|
+
"stream",
|
|
19
|
+
"chunk",
|
|
20
|
+
"line",
|
|
21
|
+
"fast-csv",
|
|
22
|
+
"large-file"
|
|
23
|
+
],
|
|
24
|
+
"author": {
|
|
25
|
+
"name": "Housseyn Cheriet",
|
|
26
|
+
"url": "https://github.com/housseynCheriet"
|
|
27
|
+
},
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/housseynCheriet/select-csv"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"main": "selectcsv.js",
|
|
34
|
+
"scripts": {
|
|
35
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
36
|
+
}
|
|
37
|
+
}
|