UNPKG

@benev/nubs

Version:
9 lines 235 B
/** stop an event from bubbling up further in the dom */ export function stop(fun) { return (event) => { event.preventDefault(); event.stopPropagation(); fun(event); }; } //# sourceMappingURL=stop.js.map