jquery-csv
Advanced tools
Comparing version 0.8.2 to 0.8.3
{ | ||
"name": "jquery-csv", | ||
"version": "0.8.2", | ||
"version": "0.8.3", | ||
"description": "A jQuery CSV parser plugin. Battle Tested | Optimized | 100% IETF RFC 4180 Complete", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -853,3 +853,3 @@ /** | ||
if (strValue.indexOf(config.delimiter) > -1) { | ||
strValue = strValue.replace(config.delimiter, config.delimiter + config.delimiter); | ||
strValue = strValue.replace(new RegExp(config.delimiter, 'g'), config.delimiter + config.delimiter); | ||
} | ||
@@ -856,0 +856,0 @@ |
193761