mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
10 lines
261 B
JavaScript
Vendored
10 lines
261 B
JavaScript
Vendored
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
|
|
}
|