pub unsafe extern "C-unwind" fn JSStringIsEqual(
a: JSStringRef,
b: JSStringRef,
) -> boolAvailable on crate features
JSBase and JSStringRef only.Expand description
Tests whether two JavaScript strings match.
Parameter a: The first JSString to test.
Parameter b: The second JSString to test.
Returns: true if the two strings match, otherwise false.
ยงSafety
amust be a valid pointer.bmust be a valid pointer.