Re: [whatwg/dom] Symbols should be allowed as Event types. (#331)

Something like
```js
const eventType = Symbol(),
      event = new Event(eventType);
eventTarget.addEventListener(eventType, ...);
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/331#issuecomment-372578101

Received on Tuesday, 13 March 2018 08:00:18 UTC