Skip to content

Instantly share code, notes, and snippets.

@tkissing
Created March 10, 2015 21:10
Show Gist options
  • Select an option

  • Save tkissing/b4944c285c761efeff9e to your computer and use it in GitHub Desktop.

Select an option

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