Comparing version 4.0.0 to 4.0.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="4.0.1"></a> | ||
## [4.0.1](https://github.com/zemirco/json2csv/compare/v4.0.0...v4.0.1) (2018-03-05) | ||
### Bug Fixes | ||
* double quote escaping before new line ([#268](https://github.com/zemirco/json2csv/issues/268)) ([fa991cf](https://github.com/zemirco/json2csv/commit/fa991cf)) | ||
<a name="4.0.0"></a> | ||
@@ -7,0 +17,0 @@ # [4.0.0](https://github.com/zemirco/json2csv/compare/v4.0.0-alpha.2...v4.0.0) (2018-02-27) |
@@ -184,3 +184,3 @@ 'use strict'; | ||
.replace(/^"(.*)"$/, this.opts.quote + '$1' + this.opts.quote) | ||
.replace(/(\\")(?=.)/g, this.opts.doubleQuote) | ||
.replace(/(\\")(?!$)/g, this.opts.doubleQuote) | ||
.replace(/\\\\/g, '\\'); | ||
@@ -187,0 +187,0 @@ |
{ | ||
"name": "json2csv", | ||
"preferGlobal": "true", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"description": "Convert JSON to CSV", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
892715