0
0

🧑‍💻 add newline after pretty printed object

This commit is contained in:
DrMaxNix 2022-09-09 13:55:26 +02:00
parent b91893d06f
commit 45690e798a
2 changed files with 1 additions and 2 deletions

View File

@ -24,7 +24,7 @@ class Juicescript_io {
// PRETTY PRINT INCOMMING DATA? //
// object
if(typeof text === "object"){
text = "Object" + "\n" + JSON.stringify(text, null, 4);
text = "Object" + "\n" + JSON.stringify(text, null, 4) + "\n";
}

View File

@ -111,6 +111,5 @@ class Juicescript {
*/
run(){
/**/this.io.stderr.debug(this.program_tree);
/**/console.log(this.program_tree);
}
}