projecte_ionic/node_modules/eventsource/lib/eventsource-polyfill.js
2022-02-09 18:30:03 +01:00

10 lines
261 B
JavaScript
Executable file

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
}