UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

12 lines (11 loc) 236 B
const debounce = (callback, time) => { let interval; return (...args) => { clearTimeout(interval); interval = setTimeout(() => { interval = null; callback(...args); }, time); }; }; export default debounce;