Improved pretty printer for console

This commit is contained in:
obscuren 2015-03-25 12:44:41 +01:00
parent 6431d088ad
commit a1cae93d78

View File

@ -1,30 +1,43 @@
package jsre
const pp_js = `
function pp(object) {
function pp(object, indent) {
var str = "";
/*
var o = object;
try {
object = JSON.stringify(object)
object = JSON.parse(object);
} catch(e) {
object = o;
}
*/
if(object instanceof Array) {
str += "[ ";
str += "[";
for(var i = 0, l = object.length; i < l; i++) {
str += pp(object[i]);
str += pp(object[i], indent);
if(i < l-1) {
str += ", ";
}
}
str += " ]";
} else if(object instanceof BigNumber) {
return pp(object.toString(), indent);
} else if(typeof(object) === "object") {
str += "{ ";
str += "{\n";
indent += " ";
var last = Object.keys(object).pop()
for(var k in object) {
str += k + ": " + pp(object[k]);
str += indent + k + ": " + pp(object[k], indent);
if(k !== last) {
str += ", ";
str += ",";
}
str += "\n";
}
str += " }";
str += indent.substr(2, indent.length) + "}";
} else if(typeof(object) === "string") {
str += "\033[32m'" + object + "'";
} else if(typeof(object) === "undefined") {
@ -46,7 +59,7 @@ function prettyPrint(/* */) {
var args = arguments;
var ret = "";
for(var i = 0, l = args.length; i < l; i++) {
ret += pp(args[i]) + "\n";
ret += pp(args[i], "") + "\n";
}
return ret;
}