Created
June 28, 2016 01:11
-
-
Save etoxin/8895a8f98c09201943dfc92c3572cd83 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
/** | |
* JS Throttle Function | |
* @example | |
$('body').on('mousemove', throttle(function (event) { | |
console.log('tick'); | |
}, 1000)); | |
* | |
* @param fn {Function} callback function | |
* @param threshhold {Number} Threshold in milliseconds | |
* @param scope {object} Scope to pass into function. | |
* @returns {Function} | |
*/ | |
throttle: function(fn, threshhold, scope) { | |
threshhold || (threshhold = 250); | |
var last, | |
deferTimer; | |
return function () { | |
var context = scope || this; | |
var now = +new Date, | |
args = arguments; | |
if (last && now < last + threshhold) { | |
// hold on to it | |
clearTimeout(deferTimer); | |
deferTimer = setTimeout(function () { | |
last = now; | |
fn.apply(context, args); | |
}, threshhold); | |
} else { | |
last = now; | |
fn.apply(context, args); | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment