JSObjectGetPrivate top-level property
Gets an object's private data.
object A JSObject whose private data you want to get.
@result A void* that is the object's private data, if the object has private data, otherwise NULL.
Implementation
final Pointer<Void> Function(JSObjectRef object) JSObjectGetPrivate = jscLib.lookup<NativeFunction<Pointer<Void> Function(JSObjectRef object)>>('JSObjectGetPrivate').asFunction();