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 += " ";