Awesome
dom-events
A list of all DOM events (probably not totally complete, but feel free to send a PR if one you want isn't included), exported as an array.
Installation
$ npm install @f/dom-events
Usage
var domEvents = require('@f/dom-events')
function delegate (root) {
domEvents.forEach(function (name) {
root.addEventListener(name, function () {
// delegate the event
})
})
}
License
MIT