UNPKG

@soleil-se/app-util

Version:

Utility functions for WebApps, RESTApps and Widgets in Sitevision.

9 lines (8 loc) 214 B
export default function preventDefault(fn) { return function cb(...args) { const event = /** @type {Event} */ (args[0]); event.preventDefault(); // @ts-ignore return fn?.apply(this, args); }; }