pub unsafe extern "C" fn JSStringIsEqual(
a: JSStringRef,
b: JSStringRef,
) -> bool
Expand description
Tests whether two JavaScript strings match.
a
: The firstJSStringRef
to test.b
: The secondJSStringRef
to test.
Returns true
if the two strings match, otherwise false
.