This commit is contained in:
chx 2020-12-04 17:19:08 +08:00 committed by GitHub
commit 09b6c29662
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -271,7 +271,8 @@ export function debounce(func, wait, immediate) {
}
}
return function(...args) {
return function(...args1) {
args = args1
context = this
timestamp = +new Date()
const callNow = immediate && !timeout