Your IP : 216.73.216.187


Current Path : /home/exhehbu/www/wp-content/plugins/complianz-gdpr/settings/src/utils/
Upload File :
Current File : /home/exhehbu/www/wp-content/plugins/complianz-gdpr/settings/src/utils/debounce.js

export function debounce(func, delay) {
	let timeoutID;
	return function(...args) {
		if (timeoutID) {
			clearTimeout(timeoutID);
		}
		timeoutID = setTimeout(() => {
			func(...args);
		}, delay);
	};
}