UNPKG

funda-ui

Version:

React components using pure Bootstrap 5+ which does not contain any external style and script libraries.

47 lines (39 loc) 1.04 kB
/* * Debounce * * @param {Function} fn - A function to be executed within the time limit. * @param {Number} limit - Waiting time. * @return {*} - Returns a new function. */ function debounce(fn: Function, limit: number = 300): any { let timer: any; return function(this: any) { clearTimeout(timer); timer = setTimeout(function(this: any) { fn.apply(this, arguments); }, limit); } } /* * Throttle * * @param {Function} fn - A function to be executed within the time limit. * @param {Number} limit - Waiting time. * @return {*} - Returns a new function. */ function throttle(fn: Function, limit: number = 300): any { let waiting: boolean = false; return function (this: any) { if (!waiting) { fn.apply(this, arguments); waiting = true; setTimeout(function () { waiting = false; }, limit); } } } export { debounce, throttle }