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 bool Function(JSContextRef ctx, JSValueRef value) JSValueIsArray =
kLookup<NativeFunction<Bool Function(JSContextRef, JSValueRef)>>(
'JSValueIsArray',
).asFunction();