Files

10 lines
261 B
JavaScript
Raw Permalink Normal View History

2024-12-03 17:40:13 +08:00
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
}