Gazebo_simulation-Frontend/node_modules/eventsource/lib/eventsource-polyfill.js
2020-12-21 10:29:31 -05:00

10 lines
261 B
JavaScript

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
}