UNPKG

@ryusei/code

Version:

<div align="center"> <a href="https://code.ryuseijs.com"> <img alt="RyuseiCode" src="https://code.ryuseijs.com/images/svg/logo.svg" width="70"> </a>

18 lines (16 loc) 423 B
/** * Call the `preventDefault()` of the provided event. * * @param e - An Event object. * @param stopPropagation - Optional. Whether to stop the event propergation or not. */ export function prevent( e: Event, stopPropagation?: boolean ): void { if ( e ) { if ( e.cancelable ) { e.preventDefault(); } if ( stopPropagation ) { e.stopPropagation(); } } }