Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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