Skip to content

Instantly share code, notes, and snippets.

@RSNara
Last active May 10, 2017 20:22
Show Gist options
  • Save RSNara/05be018794f28c7a9715ad7401ded10b to your computer and use it in GitHub Desktop.
Save RSNara/05be018794f28c7a9715ad7401ded10b to your computer and use it in GitHub Desktop.
Throttle in JS
function throttle(fn) {
let token = null;
return function thunk() {
if (token) {
return;
}
token = requestAnimationFrame(() => {
token = null;
thunk.apply(this, arguments);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment