Why is there a Gator function when the only interface is `Gator(x).on(e, s, c)` and `Gator(x).off(e, s, c)`? Why not `Gator.on(x, e, s, c)` and rely on the caller to do partial function application (e.g. with `Function.prototype.bind`)? This seems like unnecessary memory bloat[1].<p>[1] <a href="https://github.com/ccampbell/gator/blob/0c8fafad45202c018706082d976b2cf4430e7b84/gator.js#L264-L278" rel="nofollow">https://github.com/ccampbell/gator/blob/0c8fafad45202c018706...</a>