globalObject property

JSObject globalObject

Gets the global object of a JavaScript execution context. @result (JSObject) ctx's global object.

Implementation

JSObject get globalObject {
  return JSObject(this, JSContextRef.jSContextGetGlobalObject(pointer));
}