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