Bool returns the object converted to bool according to JavaScript type conversions.
()
| 57 | |
| 58 | // Bool returns the object converted to bool according to JavaScript type conversions. |
| 59 | func (o *Object) Bool() bool { return o.object.Bool() } |
| 60 | |
| 61 | // String returns the object converted to string according to JavaScript type conversions. |
| 62 | func (o *Object) String() string { return o.object.String() } |
no outgoing calls