From a2e3bf6f3002e9914f56e08b1d6e323409ff3b4f Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 25 Mar 2015 14:51:10 +0100 Subject: removed big num from pp --- jsre/pp_js.go | 2 -- 1 file changed, 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 += " "; -- cgit