test-moon / node_modules /eventsource /lib /eventsource-polyfill.js
ManojGowda's picture
Upload 955 files
4bc238b verified
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
}