Skip to content

Instantly share code, notes, and snippets.

@demiazz
Created April 26, 2019 06:16
Show Gist options
  • Save demiazz/4a775daf1c273bd50128f77d71dc574d to your computer and use it in GitHub Desktop.
Save demiazz/4a775daf1c273bd50128f77d71dc574d to your computer and use it in GitHub Desktop.
type Action = () => void;
export const throttleWithRAF = (action: Action): (() => void) => {
let isRunning = false;
return (): void => {
if (isRunning) {
return;
}
isRunning = true;
requestAnimationFrame(
(): void => {
action();
isRunning = false;
}
);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment