jSValueIsDate top-level property
Tests whether a JavaScript value is a date.
ctx
(JSContextRef) The execution context to use.
value
(JSValueRef) The JSValue to test.
@result
(bool) true if value is a date, otherwise false.
Implementation
final int Function(Pointer ctx, Pointer value) jSValueIsDate = JscFfi.lib
.lookup<NativeFunction<Int8 Function(Pointer, Pointer)>>('JSValueIsDate')
.asFunction();