This commit is contained in:
Allen
2018-08-11 13:33:52 +08:00
committed by GitHub
parent 528be5c058
commit 586acaed68

View File

@@ -91,7 +91,7 @@ function debounce(func, wait, immediate) {
timeout = setTimeout(later, wait || 0);
if (callNow) {
func.appy(this, arguments);
func.apply(this, arguments);
}
};
}