JSValueIsUndefined top-level property
Tests whether a JavaScript value's type is the undefined type.
ctx (JSContextRef) The execution context to use.
value (JSValueRef) The JSValue to test.
@result (bool) true if value's type is the undefined type, otherwise false.
Implementation
final bool Function(JSContextRef ctx, JSValueRef value) JSValueIsUndefined =
kLookup<NativeFunction<Bool Function(JSContextRef, JSValueRef)>>(
'JSValueIsUndefined',
).asFunction();