We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b65b76f commit cdbbf2eCopy full SHA for cdbbf2e
lib/textParsers.js
@@ -66,7 +66,7 @@ var parseStringArray = function(val) {
66
return x.map(function (el) {
67
if (el === 'NULL') return null;
68
if (el[0] === '{') return arguments.callee(el);
69
- if (el[0] === '\"') return el.substring(1, el.length - 1).replace('\\\"', '\"');
+ if (el[0] === '\"') return el.substring(1, el.length - 1).replace(/\\(.)/g, '$1');
70
return el;
71
});
72
};
0 commit comments