UNPKG

246 BJavaScriptView Raw
1export function on(element, eventName, callback, options) {
2 element.addEventListener(eventName, callback, options);
3 return function () { return element.removeEventListener(eventName, callback, options); };
4}
5//# sourceMappingURL=on.js.map
\No newline at end of file