Guest User

Untitled

a guest
Dec 10th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. utils.throttle = (func, delay) => {
  2. function throttledFunc(...args) {
  3. setTimeout(function () {
  4. func(...args)
  5. }, delay);
  6. }
  7. return throttledFunc;
  8. };
  9.  
  10. module.exports = utils;
Add Comment
Please, Sign In to add comment