logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

event_target_polyfill.js (201B)


  1. import EventTargetPolyfill from '@ungap/event-target'
  2. try {
  3. /* eslint-disable no-new */
  4. new EventTarget()
  5. /* eslint-enable no-new */
  6. } catch (e) {
  7. window.EventTarget = EventTargetPolyfill
  8. }