output BigNumbers objects in console as strings

This commit is contained in:
Bas van Kervel 2015-07-06 08:49:09 +02:00 committed by zelig
parent 75c3f959d4
commit 45b4443f3f

View file

@ -97,7 +97,15 @@ var isMemberFunction = function(object, member) {
}
var isBigNumber = function (object) {
return typeof BigNumber !== 'undefined' && object instanceof BigNumber;
var result = typeof BigNumber !== 'undefined' && object instanceof BigNumber;
if (!result) {
if(typeof(object) === "object") {
result = object.constructor.toString().indexOf("function BigNumber(") == 0;
}
}
return result
};
function prettyPrint(/* */) {