pub unsafe extern "C" fn JSStringIsEqualToUTF8CString(
a: JSStringRef,
b: *const c_char,
) -> boolExpand description
@function @abstract Tests whether a JavaScript string matches a null-terminated UTF8 string. @param a The JSString to test. @param b The null-terminated UTF8 string to test. @result true if the two strings match, otherwise false.