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.
2 parents 7c9a5ce + d7623e0 commit c09e4b2Copy full SHA for c09e4b2
packages/redot-stringify/redot-stringify.js
@@ -1,7 +1,7 @@
1
"use strict";
2
3
function utilQuotesAndEscaping(text) {
4
- if (text.indexOf(" ") > 0) {
+ if (text.toString().indexOf(" ") > 0) {
5
return '"' + text.replace('"', '\\"') + '"';
6
}
7
0 commit comments