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 (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 bool Function(JSContextRef ctx, JSValueRef a, JSValueRef b)
JSValueIsStrictEqual =
    kLookup<
      NativeFunction<Bool Function(JSContextRef, JSValueRef, JSValueRef)>
    >('JSValueIsStrictEqual').asFunction();