JSStringIsEqual top-level property
Tests whether two JavaScript strings match.
a (JSStringRef) The first JSString to test.
b (JSStringRef) The second JSString to test.
@result (bool) true if the two strings match, otherwise false.
Implementation
final bool Function(JSStringRef a, JSStringRef b) JSStringIsEqual =
kLookup<NativeFunction<Bool Function(JSStringRef, JSStringRef)>>(
'JSStringIsEqual',
).asFunction();