UNPKG

dockview

Version:

Zero dependency layout manager supporting tabs, grids and splitviews with ReactJS support

9 lines (8 loc) 214 B
export function debounce(cb, wait) { let timeout; const callable = (...args) => { clearTimeout(timeout); timeout = setTimeout(() => cb(...args), wait); }; return callable; }