Skip to content

Commit 1d523bc

Browse files
save file
1 parent ed59237 commit 1d523bc

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

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

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -708,10 +708,13 @@
708708

709709
}));
710710

711-
// Append any remaining args
712-
while (argIndex < args.length) {
713-
out.push(args[argIndex++]);
714-
}
711+
712+
while(argIndex<args.length){
713+
714+
var v = args[argIndex++];
715+
out.push(v);
716+
717+
}//while
715718

716719
return out;
717720

@@ -728,7 +731,7 @@
728731

729732
}//switch
730733

731-
return JSON.stringify(val,null,2);
734+
return JSON.stringify(val,null,4);
732735
}//fn
733736

734737
}//format

0 commit comments

Comments
 (0)