UNPKG

@heroku/eventsource

Version:

W3C compliant EventSource client for Node.js and browser (polyfill)

10 lines (8 loc) 261 B
var EventSource = require('./eventsource') if (typeof window === 'object') { window.EventSourcePolyfill = EventSource if (!window.EventSource) window.EventSource = EventSource module.exports = window.EventSource } else { module.exports = EventSource }