JSValueIsStrictEqual top-level property

bool Function(JSContextRef ctx, JSValueRef a, JSValueRef b) JSValueIsStrictEqual
final

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. @result true if the two values are strict equal, otherwise false.

Implementation

final bool Function(JSContextRef ctx, JSValueRef a, JSValueRef b) JSValueIsStrictEqual =
    jscLib.lookup<NativeFunction<Bool Function(JSContextRef ctx, JSValueRef a, JSValueRef b)>>('JSValueIsStrictEqual').asFunction();