Function JSValueIsSymbol

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

Tests whether a JavaScript value’s type is the symbol type.

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

Returns true if value’s type is the symbol type, otherwise false.