jSValueIsNumber top-level property
Tests whether a JavaScript value's type is the number type.
ctx
(JSContextRef) The execution context to use.
value
(JSValueRef) The JSValue to test.
@result
(bool) true if value's type is the number type, otherwise false.
Implementation
final int Function(Pointer ctx, Pointer value) jSValueIsNumber = JscFfi.lib
.lookup<NativeFunction<Int8 Function(Pointer, Pointer)>>('JSValueIsNumber')
.asFunction();