|
|
@ -227,12 +227,20 @@ func iterOwnKeys(vm *otto.Otto, obj *otto.Object, f func(string)) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (ctx ppctx) isBigNumber(v *otto.Object) bool { |
|
|
|
func (ctx ppctx) isBigNumber(v *otto.Object) bool { |
|
|
|
BigNumber, err := ctx.vm.Run("BigNumber.prototype") |
|
|
|
// Handle numbers with custom constructor.
|
|
|
|
if err != nil { |
|
|
|
if v, _ := v.Get("constructor"); v.Object() != nil { |
|
|
|
panic(err) |
|
|
|
if strings.HasPrefix(toString(v.Object()), "function BigNumber") { |
|
|
|
|
|
|
|
return true |
|
|
|
} |
|
|
|
} |
|
|
|
cp := constructorPrototype(v) |
|
|
|
} |
|
|
|
return cp != nil && cp.Value() == BigNumber |
|
|
|
// Handle default constructor.
|
|
|
|
|
|
|
|
BigNumber, _ := ctx.vm.Object("BigNumber.prototype") |
|
|
|
|
|
|
|
if BigNumber == nil { |
|
|
|
|
|
|
|
return false |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
bv, _ := BigNumber.Call("isPrototypeOf", v) |
|
|
|
|
|
|
|
b, _ := bv.ToBoolean() |
|
|
|
|
|
|
|
return b |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func toString(obj *otto.Object) string { |
|
|
|
func toString(obj *otto.Object) string { |
|
|
|