Skip to content

Instantly share code, notes, and snippets.

@Lobstrosity
Created August 4, 2010 17:52
Show Gist options
  • Save Lobstrosity/508515 to your computer and use it in GitHub Desktop.
Save Lobstrosity/508515 to your computer and use it in GitHub Desktop.
var isDoingStuff = false,
possiblyDoStuff = function() {
if (!isDoingStuff) {
isDoingStuff = true;
doStuff();
isDoingStuff = false;
}
};
setInterval(possiblyDoStuff, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment