(e: Event)
| 101 | * @param e The event to cancel propagation for. |
| 102 | */ |
| 103 | export function stopPropagation(e: Event) { |
| 104 | e.stopPropagation ? e.stopPropagation() : (e.cancelBubble = true); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Prevents the default action of an event. |
nothing calls this directly
no test coverage detected
searching dependent graphs…