Commit a2e3bf6f authored by obscuren's avatar obscuren

removed big num from pp

parent aa1eae67
......@@ -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 += " ";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment