Easy debouncing with Svelte action.
// pnpm, npm, or yarn pnpm install svelte-debounce
const config = { delay: 800, // Default = 750 callback: (value) => { ... } }
<input use:debounce={config}/>