aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jsre/pp_js.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/jsre/pp_js.go b/jsre/pp_js.go
index f06a4bb51..3352f23ce 100644
--- a/jsre/pp_js.go
+++ b/jsre/pp_js.go
@@ -23,8 +23,6 @@ function pp(object, indent) {
}
}
str += " ]";
- } else if(object instanceof BigNumber) {
- return pp(object.toString(), indent);
} else if(typeof(object) === "object") {
str += "{\n";
indent += " ";