select-csv 1.0.1 → 1.0.3
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 +2 -7
- package/package.json +3 -10
package/README.md
CHANGED
|
@@ -162,7 +162,7 @@ result = parse.rowOffset(6) //Returns all rows from the sixth row to the last ro
|
|
|
162
162
|
}
|
|
163
163
|
*/
|
|
164
164
|
|
|
165
|
-
result = parse.rowOffset(5,
|
|
165
|
+
result = parse.rowOffset(5,8) //Returns all rows from 5th to 8th row
|
|
166
166
|
/*
|
|
167
167
|
{
|
|
168
168
|
"Time": 1,
|
|
@@ -306,13 +306,8 @@ parse.resetOption(option); // All saved values are erased and the object is rest
|
|
|
306
306
|
|
|
307
307
|
* If you want get information of your object :
|
|
308
308
|
```js
|
|
309
|
-
const option = { // Just an exapmle
|
|
310
|
-
'header': false,
|
|
311
|
-
'quote': true,
|
|
312
|
-
'linebreak': '\n'
|
|
313
|
-
}
|
|
314
309
|
|
|
315
|
-
parse.getInfo();
|
|
310
|
+
const result = parse.getInfo();
|
|
316
311
|
/*
|
|
317
312
|
{
|
|
318
313
|
"offset": 275,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "select-csv",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
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",
|
|
@@ -23,18 +23,11 @@
|
|
|
23
23
|
"threading",
|
|
24
24
|
"multi-threaded"
|
|
25
25
|
],
|
|
26
|
-
"repository": {
|
|
27
|
-
"type": "git",
|
|
28
|
-
"url": "https://github.com/housseynCheriet"
|
|
29
|
-
},
|
|
30
26
|
"author": {
|
|
31
27
|
"name": "Housseyn Cheriet",
|
|
32
|
-
"url": "https://
|
|
28
|
+
"url": "https://github.com/housseynCheriet"
|
|
33
29
|
},
|
|
34
30
|
"license": "CC-BY-ND",
|
|
35
31
|
"main": "selectcsv.js",
|
|
36
|
-
"scripts": {}
|
|
37
|
-
"dependencies": {
|
|
38
|
-
|
|
39
|
-
}
|
|
32
|
+
"scripts": {}
|
|
40
33
|
}
|