debounced.js 625 B

123456789101112131415161718192021222324
  1. // 防抖函数
  2. export const debounced = (fn,delay = 100,promptly) => {
  3. let timer = null;
  4. return function(...args) {
  5. // 立即执行
  6. if(promptly) {
  7. // 当timer为null时执行
  8. if(!timer) fn.apply(this,args);
  9. if(timer) {
  10. clearTimeout(timer)
  11. }
  12. timer = setTimeout(() => {
  13. timer = null;
  14. },delay)
  15. }else {
  16. if(timer) {
  17. clearTimeout(timer)
  18. }
  19. timer = setTimeout(() => {
  20. fn.apply(this,args);
  21. },delay)
  22. }
  23. }
  24. }