pub unsafe extern "C" fn JSStringIsEqual(
    a: JSStringRef,
    b: JSStringRef
) -> bool
Expand description

Tests whether two JavaScript strings match.

  • a: The first JSString to test.
  • b: The second JSString to test.

Returns true if the two strings match, otherwise false.