Function JSValueIsArray

Source
pub unsafe extern "C" fn JSValueIsArray(
    ctx: JSContextRef,
    value: JSValueRef,
) -> bool
Expand description

Tests whether a JavaScript value is an array.

  • ctx: The execution context to use.
  • value: The JSValueRef to test.

Returns true if value is an array, otherwise false.