Guest User

Untitled

a guest
Jan 18th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. const throttle = (func, time) => {
  2. let startTimer = null;
  3. return () => {
  4. if(!startTimer) {
  5. startTimer = setTimeout(() => {
  6. startTimer = null;
  7. func();
  8. }, time);
  9. }
  10. }
  11. }
Add Comment
Please, Sign In to add comment