csv-to-js-parser
Advanced tools
Comparing version 2.3.0 to 2.3.1
{ | ||
"name": "csv-to-js-parser", | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"description": "Converting csv data into array of JavaScript objects. This module can group input data.", | ||
@@ -5,0 +5,0 @@ "main": "app.js", |
## Version 2.3. What's new? | ||
The new version added correct handling of double quotes (") according to [rfc4180](https://datatracker.ietf.org/doc/html/rfc4180). | ||
* Values in fields can now be surrounded by quotes, for example | ||
In the new version, the correct handling of double quotes (") has been added in accordance with [rfc4180](https://datatracker.ietf.org/doc/html/rfc4180). | ||
* Values in fields can now be enclosed by double quotes, for example | ||
"aaa","bbb" | ||
* Now you can use separator character or even line breaks inside quotes: | ||
* Now you can use separator character or even line breaks inside double quotes: | ||
"aaa,aa","bbb | ||
@@ -10,3 +10,3 @@ bb" | ||
"aaa""aa","bbb""aaa""bb" | ||
* Fields that are not surrounded by double quotes, but containing this characters will also be processed correctly: | ||
* Fields that are not enclosed by double quotes, but containing this characters will also be processed correctly: | ||
aa"aa,bb"aaa"bbb | ||
@@ -13,0 +13,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
65824