pub unsafe extern "C" fn JSValueIsStrictEqual(
ctx: JSContextRef,
a: JSValueRef,
b: JSValueRef,
) -> bool
Expand description
Tests whether two JavaScript values are strict equal, as compared
by the JS ===
operator.
ctx
: The execution context to use.a
: The first value to test.b
: The second value to test.
Returns true
if the two values are strict equal, otherwise false
.