UNPKG

@konradkierus/react-custom-scroll

Version:

An easily designable, cross browser (!!), custom scroll with ReactJS Animations and scroll rate **exactly** like native scroll

10 lines (9 loc) 171 B
export const simpleDebounce = (func, delay) => { let timer return function() { clearTimeout(timer) timer = setTimeout(() => { func() }, delay) } }