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 fd43934 commit ed59237Copy full SHA for ed59237
utils/editors/js-console/html/output-console/v2.0/output-console-v2.0.html
@@ -696,12 +696,12 @@
696
697
switch (match) {
698
699
- case "%s" : return ''+val;
700
- case "%d" :
701
- case "%i" : return parseInt(val, 10);
702
- case "%f" : return parseFloat(val);
703
- case "%o" :
704
- case "%O" : return format.fn(val);
+ case '%s' : return ''+val;
+ case '%d' :
+ case '%i' : return parseInt(val, 10);
+ case '%f' : return parseFloat(val);
+ case '%o' :
+ case '%O' : return format.fn(val);
705
default : return match;
706
707
}//switch
0 commit comments