We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 896ce62 commit a7aa606Copy full SHA for a7aa606
util.js
@@ -36,9 +36,9 @@ exports.pathToText = function(path, isString) {
36
}
37
for (var i = 1; i < path.length; i++) {
38
text += (i == path.length-1 && isString ? '->>' : '->')
39
- if (/^\d+$/.test(path[i]))
40
- text += path[i] //don't wrap numbers in quotes
41
- else
+ // if (/^\d+$/.test(path[i]))
+ // text += path[i] //don't wrap numbers in quotes
+ // else
42
text += '\'' + exports.stringEscape(path[i]) + '\''
43
44
return text
0 commit comments