Comparing version 0.4.1 to 0.4.2
{ | ||
"name": "sv", | ||
"version": "0.4.1", | ||
"version": "0.4.2", | ||
"description": "Any separated values.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -93,3 +93,3 @@ "use strict"; | ||
// assume minimal quoting (don't quote unless the cell contains the delimiter) | ||
var value = object[j].toString(); | ||
var value = String(object[j]); | ||
var contains_newline = value.indexOf('\n') > -1 || value.indexOf('\r') > -1; | ||
@@ -96,0 +96,0 @@ var contains_quotechar = value.indexOf(this.config.quotechar) > -1; |
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
32169