UNPKG

react-select-search-nextjs

Version:

Lightweight select component for React with support for NextJS

10 lines 209 B
export default function debounce(func, wait) { let timeout; return (...args) => { clearTimeout(timeout); timeout = setTimeout(() => { timeout = null; func(...args); }, wait); }; }