pleroma-fe/src/lib/event_target_polyfill.js
2025-02-04 15:23:21 +02:00

11 lines
308 B
JavaScript

import EventTargetPolyfill from '@ungap/event-target'
try {
// for some reason eslint both likes and dislikes
// no-new here so we just call something useless
// so it stops reporting this file
const et = new EventTarget()
et.dispatchEvent()
} catch {
window.EventTarget = EventTargetPolyfill
}