UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

9 lines (8 loc) 232 B
export function nonPassiveTouch(node, handler) { node.addEventListener("touchstart", handler, { passive: false }); return { destroy() { node.removeEventListener("touchstart", handler); } }; }