1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| /**
| * 函数防抖
| * @param {Function} func
| * @param {number} delay
| * @param {boolean} immediate
| * @return {*}
| */
|
| export function debounce(func, delay, immediate = false) {
| let timer,
| context = this;
| return (...args) => {
| if (immediate) {
| func.apply(context, args);
| immediate = false;
| return;
| }
| clearTimeout(timer);
| timer = setTimeout(() => {
| func.apply(context, args);
| }, delay);
| };
| }
|
|