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