JSObjectIsFunction top-level property

bool Function(JSContextRef ctx, JSObjectRef object) JSObjectIsFunction
final

Tests whether an object can be called as a function. ctx (JSContextRef) The execution context to use. object (JSObjectRef) The JSObject to test. @result (bool) true if the object can be called as a function, otherwise false.

Implementation

final bool Function(JSContextRef ctx, JSObjectRef object) JSObjectIsFunction =
    kLookup<NativeFunction<Bool Function(JSContextRef, JSObjectRef)>>(
      'JSObjectIsFunction',
    ).asFunction();