Skip to content

Instantly share code, notes, and snippets.

@tkissing
Created March 10, 2015 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkissing/b4944c285c761efeff9e to your computer and use it in GitHub Desktop.
Save tkissing/b4944c285c761efeff9e to your computer and use it in GitHub Desktop.
setInterval wrapper that returns "stop" method.
function startInterval(func, freq) {
var id = setInterval(func, freq);
return function() {
if (id) {
clearInterval(id);
id = null;
return true;
}
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment