Skip to content

Commit 6bf5b6d

Browse files
skimklinYuChengKai
authored and
YuChengKai
committed
新增: 英文版防抖函数增加clearTimeout分支
1 parent d81be2f commit 6bf5b6d

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

JS/JS-ch.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -801,12 +801,8 @@ _.debounce = function(func, wait, immediate) {
801801
var callNow = immediate && !timeout;
802802
// 如果定时器不存在就创建一个
803803
// 定时器存在则清除当前定时器并重新设定一个新的定时器
804-
if (!timeout) {
805-
timeout = setTimeout(later, wait);
806-
} else {
807-
clearTimeout(timeout);
808-
timeout = setTimeout(later, wait);
809-
}
804+
if (timeout) clearTimeout(timeout);
805+
timeout = setTimeout(later, wait);
810806
if (callNow) {
811807
// 如果需要立即执行函数的话 通过 apply 执行
812808
result = func.apply(context, args);

JS/JS-en.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,9 @@ _.debounce = function(func, wait, immediate) {
11051105
// if the timer doesn't exist then execute the function immediately
11061106
var callNow = immediate && !timeout;
11071107
// if the timer doesn't exist then create one
1108-
if (!timeout) timeout = setTimeout(later, wait);
1108+
// else clear the current timer and reset a new timer
1109+
if (timeout) clearTimeout(timeout);
1110+
timeout = setTimeout(later, wait);
11091111
if (callNow) {
11101112
// if the immediate execution is needed, use apply to start the function
11111113
result = func.apply(context, args);

0 commit comments

Comments
 (0)