removed big num from pp

This commit is contained in:
obscuren 2015-03-25 14:51:10 +01:00
parent aa1eae67ec
commit a2e3bf6f30
1 changed files with 0 additions and 2 deletions

View File

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