Dashboard sipadu mbip
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.

eventsource-polyfill.js 261B

123456789
  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. }