Versions in this module Expand all Collapse all v3 v3.0.1 Sep 11, 2025 v3.0.0 Sep 11, 2025 Changes in this version + func CopyBytesToGo(dst []byte, src Value) (int, error) — js/wasm + func CopyBytesToJS(dst Value, src []byte) (int, error) — js/wasm + func Unsafe(v Value) js.Value — js/wasm + type Func safejs.Func — js/wasm + func FuncOf(fn func(this Value, args []Value) any) (Func, error) + func (f Func) Release() + func (f Func) Value() Value + type Value safejs.Value — js/wasm + func Safe(v js.Value) Value + func ValueOf(value any) (Value, error) + func (v Value) Call(m string, args ...any) (Value, error) + func (v Value) Get(p string) (Value, error) + func (v Value) GetBool(p string) (bool, error) + func (v Value) GetInt(p string) (int, error) + func (v Value) GetString(p string) (string, error) + func (v Value) Index(i int) (Value, error) + func (v Value) IndexString(i int) (string, error) + func (v Value) IsNull() bool + func (v Value) IsUndefined() bool + func (v Value) New(args ...any) (Value, error)