InternalObject returns the internal JavaScript object that represents i. Not intended for public use.
(i any)
| 114 | |
| 115 | // InternalObject returns the internal JavaScript object that represents i. Not intended for public use. |
| 116 | func InternalObject(i any) *Object { |
| 117 | return nil |
| 118 | } |
| 119 | |
| 120 | // MakeFunc wraps a function and gives access to the values of JavaScript's "this" and "arguments" keywords. |
| 121 | func MakeFunc(fn func(this *Object, arguments []*Object) any) *Object { |
no outgoing calls
searching dependent graphs…