Versions in this module Expand all Collapse all v1 v1.18.1 Aug 15, 2022 Changes in this version + func Debugger() + func Keys(o *Object) []string + type Error struct + func (err *Error) Error() string + func (err *Error) Stack() string + type M map[string]interface + type Object struct + var Global *Object + var Module *Object + var Undefined *Object + func InternalObject(i interface{}) *Object + func MakeFullWrapper(i interface{}) *Object + func MakeFunc(fn func(this *Object, arguments []*Object) interface{}) *Object + func MakeWrapper(i interface{}) *Object + func NewArrayBuffer(b []byte) *Object + func (o *Object) Bool() bool + func (o *Object) Call(name string, args ...interface{}) *Object + func (o *Object) Delete(key string) + func (o *Object) Float() float64 + func (o *Object) Get(key string) *Object + func (o *Object) Index(i int) *Object + func (o *Object) Int() int + func (o *Object) Int64() int64 + func (o *Object) Interface() interface{} + func (o *Object) Invoke(args ...interface{}) *Object + func (o *Object) Length() int + func (o *Object) New(args ...interface{}) *Object + func (o *Object) Set(key string, value interface{}) + func (o *Object) SetIndex(i int, value interface{}) + func (o *Object) String() string + func (o *Object) Uint64() uint64 + func (o *Object) Unsafe() uintptr + type S []interface