select-csv 1.1.4 → 1.1.6
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/README.md +14 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ select-csv has **no dependencies** .
|
|
|
21
21
|
Install:
|
|
22
22
|
-------
|
|
23
23
|
|
|
24
|
-
select-csv is available on [npm](https://www.npmjs.com/package/
|
|
24
|
+
select-csv is available on [npm](https://www.npmjs.com/package/select-csv). It
|
|
25
25
|
can be installed with the following command:
|
|
26
26
|
|
|
27
27
|
npm install select-csv
|
|
@@ -446,4 +446,16 @@ result = parse.getInfo() // Get all the information
|
|
|
446
446
|
}
|
|
447
447
|
}
|
|
448
448
|
*/
|
|
449
|
-
```
|
|
449
|
+
```
|
|
450
|
+
|
|
451
|
+
## Request Features or Report Bugs
|
|
452
|
+
|
|
453
|
+
Feature requests and bug reports are very welcome: https://github.com/housseynCheriet/select-csv/issues
|
|
454
|
+
|
|
455
|
+
A couple of requests from me when you raise an issue on GitHub.
|
|
456
|
+
|
|
457
|
+
* **Requesting a feature:** Please try to provide the context of why you want the feature. Such as,
|
|
458
|
+
in what situation the feature could help you and how, or how the lack of the feature is causing an inconvenience to you.
|
|
459
|
+
I can't start thinking of introducing it until I understand how it helps you 🙂
|
|
460
|
+
* **Reporting a bug:** If you could provide a runnable code snippet that reproduces the bug, it would be very helpful!
|
|
461
|
+
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "select-csv",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.1.6",
|
|
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
5
|
"keywords": [
|
|
6
6
|
"csv",
|
|
7
7
|
"parser",
|
|
@@ -10,23 +10,23 @@
|
|
|
10
10
|
"delimited",
|
|
11
11
|
"text",
|
|
12
12
|
"data",
|
|
13
|
-
"auto-detect",
|
|
14
13
|
"comma",
|
|
15
14
|
"tab",
|
|
16
15
|
"pipe",
|
|
17
16
|
"file",
|
|
18
17
|
"filereader",
|
|
19
18
|
"stream",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"thread",
|
|
23
|
-
"threading",
|
|
24
|
-
"multi-threaded"
|
|
19
|
+
"chunk",
|
|
20
|
+
"line"
|
|
25
21
|
],
|
|
26
22
|
"author": {
|
|
27
23
|
"name": "Housseyn Cheriet",
|
|
28
24
|
"url": "https://github.com/housseynCheriet"
|
|
29
25
|
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/housseynCheriet/select-csv"
|
|
29
|
+
},
|
|
30
30
|
"license": "CC-BY-ND",
|
|
31
31
|
"main": "selectcsv.js",
|
|
32
32
|
"scripts": {},
|