removed big num from pp
This commit is contained in:
parent
aa1eae67ec
commit
a2e3bf6f30
|
@ -23,8 +23,6 @@ function pp(object, indent) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
str += " ]";
|
str += " ]";
|
||||||
} else if(object instanceof BigNumber) {
|
|
||||||
return pp(object.toString(), indent);
|
|
||||||
} else if(typeof(object) === "object") {
|
} else if(typeof(object) === "object") {
|
||||||
str += "{\n";
|
str += "{\n";
|
||||||
indent += " ";
|
indent += " ";
|
||||||
|
|
Loading…
Reference in New Issue