JSFiddle - React, Tailwind, and code Playground

by denisz

JavaScript

function throtte(fn) {
	var timer;
	return function(e) {
     clearTimeout(timer);
     timer = setTimeout(function(){
	     fn(e);
     }, 3000);
     
  }
}

var test = throtte(function(){
		alert('test');
});


test();
test();
test();
test();
test();