tsdom
Version:
Fast, lightweight JavaScript DOM manipulation utility
22 lines (17 loc) • 395 B
text/typescript
/* -----------------------------------
*
* Direct
*
* -------------------------------- */
function direct(cb: (ev: Event, el: HTMLElement) => void) {
return (ev: Event) => {
const el = ev.currentTarget as HTMLElement;
cb(ev, el);
};
}
/* -----------------------------------
*
* Export
*
* -------------------------------- */
export { direct };