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)