You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
261 B

4 years ago
  1. var EventSource = require('./eventsource')
  2. if (typeof window === 'object') {
  3. window.EventSourcePolyfill = EventSource
  4. if (!window.EventSource) window.EventSource = EventSource
  5. module.exports = window.EventSource
  6. } else {
  7. module.exports = EventSource
  8. }