MCPcopy Create free account
hub / github.com/Snapchat/Valdi / JS_IsNumber

Function JS_IsNumber

third-party/quickjs/include/quickjs/quickjs.h:559–562  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

557}
558
559static inline JS_BOOL JS_IsNumber(JSValueConst v) {
560 int tag = JS_VALUE_GET_TAG(v);
561 return tag == JS_TAG_INT || JS_TAG_IS_FLOAT64(tag);
562}
563
564static inline JS_BOOL JS_IsBigInt(JSContext* ctx, JSValueConst v) {
565 int tag = JS_VALUE_GET_TAG(v);

Callers 2

getValueTypeMethod · 0.85
isValueNumberMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected