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