aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum/js_lib.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-16 02:34:25 +0800
committerobscuren <geffobscura@gmail.com>2014-07-16 02:34:25 +0800
commit28948d061cfc14d7a5da307a12ebd504b78d2dbb (patch)
tree168772cef16e9fb7eea6727d4ae254097d277ce1 /ethereum/js_lib.go
parent288f1c5387c1a0a8863499389e8a7ca7e3068208 (diff)
downloadgo-tangerine-28948d061cfc14d7a5da307a12ebd504b78d2dbb.tar
go-tangerine-28948d061cfc14d7a5da307a12ebd504b78d2dbb.tar.gz
go-tangerine-28948d061cfc14d7a5da307a12ebd504b78d2dbb.tar.bz2
go-tangerine-28948d061cfc14d7a5da307a12ebd504b78d2dbb.tar.lz
go-tangerine-28948d061cfc14d7a5da307a12ebd504b78d2dbb.tar.xz
go-tangerine-28948d061cfc14d7a5da307a12ebd504b78d2dbb.tar.zst
go-tangerine-28948d061cfc14d7a5da307a12ebd504b78d2dbb.zip
Moved the repl to a new package
Diffstat (limited to 'ethereum/js_lib.go')
-rw-r--r--ethereum/js_lib.go53
1 files changed, 0 insertions, 53 deletions
diff --git a/ethereum/js_lib.go b/ethereum/js_lib.go
deleted file mode 100644
index 189dcc3a0..000000000
--- a/ethereum/js_lib.go
+++ /dev/null
@@ -1,53 +0,0 @@
-package main
-
-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;
-`