fffiloni's picture
Upload 953 files
f9f0fec verified
raw
history blame
No virus
261 Bytes
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
}