pub unsafe extern "C" fn JSValueGetTypedArrayType(
ctx: JSContextRef,
value: JSValueRef,
exception: *mut JSValueRef,
) -> JSTypedArrayTypeExpand description
Returns a JavaScript value’s Typed Array type.
ctx: The execution context to use.value: TheJSValueRefwhose Typed Array type to return.exception: A pointer to aJSValueRefin which to store an exception, if any. PassNULLif you do not care to store an exception.
Returns a value of type JSTypedArrayType that identifies
value’s Typed Array type, or JSTypedArrayType::None if the
value is not a Typed Array object.