diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-11 22:24:17 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-11 22:24:17 +0800 |
commit | ce8f24e57a3ba31d17c34db284bd3d9efa15e7d8 (patch) | |
tree | 1beabaecc4347bd718ec78d77f57943bdd423873 /ethereum/repl/js_lib.go | |
parent | 51a2087081ec0c8a9d0d739c344929c8494e13b6 (diff) | |
download | dexon-ce8f24e57a3ba31d17c34db284bd3d9efa15e7d8.tar dexon-ce8f24e57a3ba31d17c34db284bd3d9efa15e7d8.tar.gz dexon-ce8f24e57a3ba31d17c34db284bd3d9efa15e7d8.tar.bz2 dexon-ce8f24e57a3ba31d17c34db284bd3d9efa15e7d8.tar.lz dexon-ce8f24e57a3ba31d17c34db284bd3d9efa15e7d8.tar.xz dexon-ce8f24e57a3ba31d17c34db284bd3d9efa15e7d8.tar.zst dexon-ce8f24e57a3ba31d17c34db284bd3d9efa15e7d8.zip |
Moved JSRE to it's own package for sharing between ethere(um/al)
Diffstat (limited to 'ethereum/repl/js_lib.go')
-rw-r--r-- | ethereum/repl/js_lib.go | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/ethereum/repl/js_lib.go b/ethereum/repl/js_lib.go deleted file mode 100644 index c781c43d0..000000000 --- a/ethereum/repl/js_lib.go +++ /dev/null @@ -1,53 +0,0 @@ -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; -` |