jSValueIsSymbol top-level property

int Function(Pointer<NativeType> ctx, Pointer<NativeType> value) jSValueIsSymbol
final

Tests whether a JavaScript value's type is the symbol type. ctx (JSContextRef) The execution context to use. value (JSValueRef) The JSValue to test. @result (bool) true if value's type is the symbol type, otherwise false.

Implementation

final int Function(Pointer ctx, Pointer value) jSValueIsSymbol = JscFfi.lib
    .lookup<NativeFunction<Int8 Function(Pointer, Pointer)>>('JSValueIsSymbol')
    .asFunction();