aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum/repl/js_lib.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-17 21:32:44 +0800
committerobscuren <geffobscura@gmail.com>2014-07-17 21:32:44 +0800
commitc9517024237de781cdc450bca89907217e5a8cef (patch)
tree9ed398ca6ddbc019917b96a6e14988d89fbef15a /ethereum/repl/js_lib.go
parentfc8bd7229ee25e214130df98875ecc13e4650911 (diff)
parent7d64b589b4cf3f71125d5bd0f0a8f6a560e909db (diff)
downloadgo-tangerine-0.5.17.tar
go-tangerine-0.5.17.tar.gz
go-tangerine-0.5.17.tar.bz2
go-tangerine-0.5.17.tar.lz
go-tangerine-0.5.17.tar.xz
go-tangerine-0.5.17.tar.zst
go-tangerine-0.5.17.zip
Merge branch 'develop'0.5.17
Diffstat (limited to 'ethereum/repl/js_lib.go')
-rw-r--r--ethereum/repl/js_lib.go53
1 files changed, 53 insertions, 0 deletions
diff --git a/ethereum/repl/js_lib.go b/ethereum/repl/js_lib.go
new file mode 100644
index 000000000..c781c43d0
--- /dev/null
+++ b/ethereum/repl/js_lib.go
@@ -0,0 +1,53 @@
+package ethrepl
+
+const jsLib = `
+function pp(object) {
+ var str = "";
+
+ if(object instanceof Array) {
+ str += "[ ";
+ for(var i = 0, l = object.length; i < l; i++) {
+ str += pp(object[i]);
+
+ if(i < l-1) {
+ str += ", ";
+ }
+ }
+ str += " ]";
+ } else if(typeof(object) === "object") {
+ str += "{ ";
+ var last = Object.keys(object).sort().pop()
+ for(var k in object) {
+ str += k + ": " + pp(object[k]);
+
+ if(k !== last) {
+ str += ", ";
+ }
+ }
+ str += " }";
+ } 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;
+ } else if(typeof(object) === "function") {
+ str += "\033[35m[Function]";
+ } else {
+ str += object;
+ }
+
+ str += "\033[0m";
+
+ return str;
+}
+
+function prettyPrint(/* */) {
+ var args = arguments;
+ for(var i = 0, l = args.length; i < l; i++) {
+ console.log(pp(args[i]))
+ }
+}
+
+var print = prettyPrint;
+`