convert-csv-to-json 3.2.0 → 3.4.0

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.
@@ -9,7 +9,7 @@ jobs:
9
9
 
10
10
  strategy:
11
11
  matrix:
12
- node-version: [14.x, 16.x, 18.x, 20.x, 21.x]
12
+ node-version: [14.x, 16.x, 18.x, 20.x, 21.x, 22.x]
13
13
 
14
14
  steps:
15
15
  - uses: actions/checkout@v4
@@ -38,10 +38,10 @@ jobs:
38
38
  token: ${{ secrets.ACTION_TOKEN }}
39
39
  - uses: fregante/setup-git-user@v2
40
40
  - run: git config --global user.name "dependabot"
41
- - name: Use Node.js 21.x
41
+ - name: Use Node.js 22.x
42
42
  uses: actions/setup-node@v4
43
43
  with:
44
- node-version: 21.x
44
+ node-version: 22.x
45
45
  registry-url: 'https://registry.npmjs.org'
46
46
  - name: npm-semver-publish
47
47
  uses: iuccio/npm-semver-publish-action@v1.11.0
package/README.md CHANGED
@@ -179,7 +179,7 @@ The content of the field header is cut off at the beginning and end of the strin
179
179
  Use the method *trimHeaderFieldWhiteSpace(true)* to remove the whitespaces in an header field (E.g. " Last Name " -> "LastName"):
180
180
 
181
181
  ```js
182
- csvToJson.rimHeaderFieldWhiteSpace(true)
182
+ csvToJson.trimHeaderFieldWhiteSpace(true)
183
183
  .getJsonFromCsv(fileInputName);
184
184
  ```
185
185
 
@@ -352,4 +352,4 @@ CSVtoJSON is licensed under the GNU General Public License v3.0 [License](LICENS
352
352
  ## Buy me a Coffee
353
353
  Just if you want to support this repository:
354
354
  * **BTC** tip address:
355
- 37vdjQhbaR7k7XzhMKWzMcnqUxfw1njBNk
355
+ 37vdjQhbaR7k7XzhMKWzMcnqUxfw1njBNk
package/SECURITY.md CHANGED
@@ -14,6 +14,7 @@ A generated Github Depedabot PR is normally quickly merged and a new version is
14
14
 
15
15
  | Version | Supported |
16
16
  | ------- | ------------------ |
17
+ | 3.3.0 | :white_check_mark: |
17
18
  | 2.37.0 | :white_check_mark: |
18
19
  | 2.29.0 | :white_check_mark: |
19
20
  | 2.2.0 | :white_check_mark: |
@@ -26,6 +27,7 @@ A generated Github Depedabot PR is normally quickly merged and a new version is
26
27
 
27
28
  | Version | Supported |
28
29
  | ------- | ------------------ |
30
+ | 3.3.0 | :white_check_mark: |
29
31
  | 2.29.0 | :white_check_mark: |
30
32
  | 2.2.0 | :white_check_mark: |
31
33
  | 2.0.0 | :white_check_mark: |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-csv-to-json",
3
- "version": "3.2.0",
3
+ "version": "3.4.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",