Created
December 8, 2015 14:56
-
-
Save izifortune/6845d77947270e9f0802 to your computer and use it in GitHub Desktop.
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
var debounce = (func, wait, immediate) => { | |
let timeout; | |
return () => { | |
let context = this, | |
args = arguments; | |
let later = () => { | |
timeout = null; | |
if (!immediate) func.apply(context, args); | |
} | |
let callNow = immediate && !timeout; | |
clearTimeout(timeout); | |
timeout = setTimeout(later, wait); | |
if (callNow) func.apply(context, args); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment