quorum/jsre/pp_js.go

75 lines
1.7 KiB
Go
Raw Normal View History

package jsre
2014-05-19 07:32:45 -07:00
const pp_js = `
2015-03-25 04:44:41 -07:00
function pp(object, indent) {
2014-05-19 07:32:45 -07:00
var str = "";
2015-03-25 04:44:41 -07:00
/*
var o = object;
try {
object = JSON.stringify(object)
object = JSON.parse(object);
} catch(e) {
object = o;
}
*/
2014-05-19 07:32:45 -07:00
if(object instanceof Array) {
2015-03-25 04:44:41 -07:00
str += "[";
2014-05-19 07:32:45 -07:00
for(var i = 0, l = object.length; i < l; i++) {
2015-03-25 04:44:41 -07:00
str += pp(object[i], indent);
2014-05-19 07:32:45 -07:00
if(i < l-1) {
str += ", ";
}
}
str += " ]";
} else if (object instanceof Error) {
str += "\033[31m" + "Error";
2014-05-19 07:32:45 -07:00
} else if(typeof(object) === "object") {
2015-03-25 04:44:41 -07:00
str += "{\n";
indent += " ";
var last = Object.getOwnPropertyNames(object).pop()
Object.getOwnPropertyNames(object).forEach(function (k) {
str += indent + k + ": ";
try {
str += pp(object[k], indent);
} catch (e) {
str += pp(e, indent);
}
2014-05-19 07:32:45 -07:00
if(k !== last) {
2015-03-25 04:44:41 -07:00
str += ",";
2014-05-19 07:32:45 -07:00
}
str += "\n";
});
2015-03-25 04:44:41 -07:00
str += indent.substr(2, indent.length) + "}";
2014-05-19 07:32:45 -07:00
} else if(typeof(object) === "string") {
str += "\033[32m'" + object + "'";
} else if(typeof(object) === "undefined") {
str += "\033[1m\033[30m" + object;
} else if(typeof(object) === "number") {
str += "\033[31m" + object;
2014-05-19 08:01:40 -07:00
} else if(typeof(object) === "function") {
str += "\033[35m[Function]";
2014-05-19 07:32:45 -07:00
} else {
str += object;
2014-05-19 07:32:45 -07:00
}
str += "\033[0m";
return str;
}
2014-05-19 08:01:40 -07:00
function prettyPrint(/* */) {
var args = arguments;
var ret = "";
2014-05-19 08:01:40 -07:00
for(var i = 0, l = args.length; i < l; i++) {
2015-03-25 04:44:41 -07:00
ret += pp(args[i], "") + "\n";
2014-05-19 08:01:40 -07:00
}
return ret;
2014-05-19 07:32:45 -07:00
}
2014-05-19 08:01:40 -07:00
var print = prettyPrint;
2014-05-19 07:32:45 -07:00
`