Socket
Socket
Sign inDemoInstall

@sanity/eventsource

Package Overview
Dependencies
Maintainers
48
Versions
565
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sanity/eventsource - npm Package Compare versions

Comparing version 6.0.0-canary.0 to 6.0.0-canary.1

11

browser.js

@@ -1177,2 +1177,11 @@ /**

return EventSourcePolyfill
})(getGlobalScope())
})(
(function getGlobalScope() {
if (typeof globalThis !== 'undefined') return globalThis
if (typeof window !== 'undefined') return window
if (typeof self !== 'undefined') return self
if (typeof global !== 'undefined') return global
throw new Error('@sanity/eventsource: could not locate global scope')
})(),
)

2

package.json
{
"name": "@sanity/eventsource",
"version": "6.0.0-canary.0",
"version": "6.0.0-canary.1",
"description": "EventSource polyfill for browser and node.js",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc