Skip to content

Commit 892e079

Browse files
save file
1 parent 2261909 commit 892e079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/editors/js-console/html/output-console/output-console.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@
686686
out.push(fmt.replace(/%[sdifoO]/g, (match) => {
687687
const val = args[argIndex++];
688688
switch (match) {
689-
case "%s": return String(val);
689+
case "%s": return ''+val;
690690
case "%d":
691691
case "%i": return parseInt(val, 10);
692692
case "%f": return parseFloat(val);

0 commit comments

Comments
 (0)