Float returns the object converted to float64 according to JavaScript type conversions (parseFloat).
()
| 72 | |
| 73 | // Float returns the object converted to float64 according to JavaScript type conversions (parseFloat). |
| 74 | func (o *Object) Float() float64 { return o.object.Float() } |
| 75 | |
| 76 | // Interface returns the object converted to any. See table in package comment for details. |
| 77 | func (o *Object) Interface() any { return o.object.Interface() } |
no outgoing calls