Last active
July 22, 2024 11:49
-
-
Save vincentorback/9649034 to your computer and use it in GitHub Desktop.
Smarter debouncing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function debounce (fn, wait = 1) { | |
let timeout | |
return function (...args) { | |
clearTimeout(timeout) | |
timeout = setTimeout(() => fn.call(this, ...args), wait) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function debounce (fn, wait) { | |
var timeout | |
return function () { | |
clearTimeout(timeout) | |
var args = arguments | |
timeout = setTimeout(function () { | |
fn.apply(this, args) | |
}, (wait || 1)) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.addEventListener('resize', debounce(function () { | |
}, 500)) |
@kutyel yummy!
Think there may be a bug in debounce-vanilla.js
in passing the correct arguments object. Here's the fixed version:
function debounce (fn, wait) {
var timeout
return function () {
clearTimeout(timeout)
var args = arguments;
timeout = setTimeout(function () {
fn.apply(this, args)
}, (wait || 1))
}
}
@katzgrau you're very right! Thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What about this?
I think it looks more ES2015 :)