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