convert-csv-to-json 3.3.0 → 3.5.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
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
 
@@ -338,7 +338,7 @@ csvToJson.fieldDelimiter(',')
338
338
 
339
339
  ## CI CD github action
340
340
 
341
- This repository uses the [GitHub Action iuccio/npm-semantic-publish-action@latest](https://github.com/marketplace/actions/npm-semver-publish-action) to publish the npm packeges.
341
+ This repository uses the [GitHub Action iuccio/npm-semantic-publish-action@latest](https://github.com/marketplace/actions/npm-semver-publish) to publish the npm packeges.
342
342
  Pushing on the master branch, depending on the git message, an new version will always be released.
343
343
  If the commit message contains the keyword:
344
344
  * **[MAJOR]**: new major relase, e.g. v1.0.0 -> v2.0.0
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-csv-to-json",
3
- "version": "3.3.0",
3
+ "version": "3.5.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",