| 557 | } |
| 558 | |
| 559 | static 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 | |
| 564 | static inline JS_BOOL JS_IsBigInt(JSContext* ctx, JSValueConst v) { |
| 565 | int tag = JS_VALUE_GET_TAG(v); |
no outgoing calls
no test coverage detected