globalThis
is a global object reference for client and server applications using JavaScript.
π Itβs helpful to create cross-platform apps and libraries.
π Due to security, globalThis
is a Proxy reference of the global object on the browser.
globalThis.fetch("https://...");
Top comments (0)