MCPcopy Create free account
hub / github.com/buke/quickjs-go / IsException

Method IsException

value.go:1085–1085  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1083func (v *Value) IsNull() bool { return v != nil && bool(C.JS_IsNull(v.ref)) }
1084func (v *Value) IsUndefined() bool { return v != nil && bool(C.JS_IsUndefined(v.ref)) }
1085func (v *Value) IsException() bool { return v != nil && bool(C.JS_IsException(v.ref)) }
1086func (v *Value) IsUninitialized() bool { return v != nil && bool(C.JS_IsUninitialized(v.ref)) }
1087func (v *Value) IsString() bool { return v != nil && bool(C.JS_IsString(v.ref)) }
1088func (v *Value) IsSymbol() bool { return v != nil && bool(C.JS_IsSymbol(v.ref)) }

Calls

no outgoing calls