UNPKG

@benev/nubs

Version:
10 lines (8 loc) 216 B
/** stop an event from bubbling up further in the dom */ export function stop<E extends Event>(fun: (event: E) => void) { return (event: E) => { event.preventDefault() event.stopPropagation() fun(event) } }