UNPKG

@smui/common

Version:

Svelte Material UI - Common

8 lines (7 loc) 196 B
export function stopPropagation<T extends EventListener>(fn: T): T { return function (event: Event) { event.stopPropagation(); // @ts-ignore return fn.call(this, event); } as T; }