aboutsummaryrefslogtreecommitdiff
path: root/src/lib/event_target_polyfill.js
blob: 2042c7706a71a03db8c20484f3042c795ffb8fa2 (plain)
1
2
3
4
5
6
7
8
9
import EventTargetPolyfill from '@ungap/event-target'

try {
  /* eslint-disable no-new  */
  new EventTarget()
  /* eslint-enable no-new  */
} catch (e) {
  window.EventTarget = EventTargetPolyfill
}