Function ul_sys::JSValueIsStrictEqual[][src]

pub unsafe extern "C" fn JSValueIsStrictEqual(
    ctx: JSContextRef,
    a: JSValueRef,
    b: JSValueRef
) -> bool
Expand description

@function @abstract Tests whether two JavaScript values are strict equal, as compared by the JS === operator. @param ctx The execution context to use. @param a The first value to test. @param b The second value to test. @result true if the two values are strict equal, otherwise false.