Last active
March 31, 2018 21:09
-
-
Save kristoferjoseph/c952f461b415299d6a52f07f9a34b18e to your computer and use it in GitHub Desktop.
Debounce with immediate execution option removed
This file contains hidden or 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 () { | |
var context = this | |
var args = Array.prototype.slice.call(arguments) | |
var later = function () { | |
timeout = null | |
fn.apply(context, args) | |
} | |
clearTimeout(timeout) | |
timeout = setTimeout(later, wait) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment