Last active
October 20, 2015 12:44
-
-
Save anvk/496624199e4f04a3f080 to your computer and use it in GitHub Desktop.
Execute function not often than wait time period
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
/* | |
* func - function you want to debounce | |
* wait - time period in milliseconds | |
* immediate - boolean if you want to execute function right away | |
*/ | |
function debounce(func, wait, immediate) { | |
var timeout; | |
return function() { | |
var context = this, args = arguments; | |
var later = function() { | |
timeout = null; | |
if (!immediate) func.apply(context, args); | |
}; | |
var callNow = immediate && !timeout; | |
clearTimeout(timeout); | |
timeout = setTimeout(later, wait); | |
if (callNow) func.apply(context, args); | |
}; | |
}; | |
// Ensure that there is one function call every second | |
var optimizedFunc = debounce(function() { | |
// my complex logix here | |
}, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment