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

Method IsBigInt

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

Source from the content-addressed store, hash-verified

1079
1080func (v *Value) IsNumber() bool { return v != nil && bool(C.JS_IsNumber(v.ref)) }
1081func (v *Value) IsBigInt() bool { return v != nil && bool(C.JS_IsBigInt(v.ref)) }
1082func (v *Value) IsBool() bool { return v != nil && bool(C.JS_IsBool(v.ref)) }
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)) }

Callers 7

ToBigIntMethod · 0.95
TestContextBasicsFunction · 0.80
TestDeprecatedAPIsFunction · 0.80
unmarshalMethod · 0.80
unmarshalInterfaceMethod · 0.80
TestValueBasicsFunction · 0.80

Calls

no outgoing calls

Tested by 4

TestContextBasicsFunction · 0.64
TestDeprecatedAPIsFunction · 0.64
TestValueBasicsFunction · 0.64