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.
Files changed (4) hide show
  1. package/LICENSE.txt +21 -0
  2. package/README.md +132 -426
  3. package/package.json +37 -34
  4. package/selectcsv.js +254 -1288
package/package.json CHANGED
@@ -1,34 +1,37 @@
1
- {
2
- "name": "select-csv",
3
- "version": "1.1.20",
4
- "description": "Fastest, simplest and most powerful package of all existing libraries in npmjs. It converts .csv files into an array and even into lines. It contains two important functions parseCsv that handles a csv file, you only need a link to the file. And parseText deals with text, and they both have the same roles and and methods",
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
- "author": {
23
- "name": "Housseyn Cheriet",
24
- "url": "https://github.com/housseynCheriet"
25
- },
26
- "repository": {
27
- "type": "git",
28
- "url": "https://github.com/housseynCheriet/select-csv"
29
- },
30
- "license": "CC-BY-ND",
31
- "main": "selectcsv.js",
32
- "scripts": {}
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
+ }