jSValueIsStrictEqual top-level property

int Function(Pointer<NativeType> ctx, Pointer<NativeType> a, Pointer<NativeType> b) jSValueIsStrictEqual
final

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

Implementation

final int Function(Pointer ctx, Pointer a, Pointer b) jSValueIsStrictEqual =
    JscFfi.lib
        .lookup<NativeFunction<Int8 Function(Pointer, Pointer, Pointer)>>(
            'JSValueIsStrictEqual')
        .asFunction();