fixed printing BigNumbers
This commit is contained in:
parent
bb3ae3026e
commit
f960fc066e
@ -25,6 +25,8 @@ function pp(object, indent) {
|
|||||||
str += " ]";
|
str += " ]";
|
||||||
} else if (object instanceof Error) {
|
} else if (object instanceof Error) {
|
||||||
str += "\033[31m" + "Error";
|
str += "\033[31m" + "Error";
|
||||||
|
} else if (isBigNumber(object)) {
|
||||||
|
str += "\033[32m'" + object.toString(10) + "'";
|
||||||
} else if(typeof(object) === "object") {
|
} else if(typeof(object) === "object") {
|
||||||
str += "{\n";
|
str += "{\n";
|
||||||
indent += " ";
|
indent += " ";
|
||||||
@ -61,6 +63,11 @@ function pp(object, indent) {
|
|||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var isBigNumber = function (object) {
|
||||||
|
return typeof BigNumber !== 'undefined' && object instanceof BigNumber;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
function prettyPrint(/* */) {
|
function prettyPrint(/* */) {
|
||||||
var args = arguments;
|
var args = arguments;
|
||||||
var ret = "";
|
var ret = "";
|
||||||
|
Loading…
Reference in New Issue
Block a user