Skip to content

Instantly share code, notes, and snippets.

@stilist
Created September 19, 2012 20:45
Show Gist options
  • Save stilist/3752151 to your computer and use it in GitHub Desktop.
Save stilist/3752151 to your computer and use it in GitHub Desktop.
If you’re ever curious about your setTimeout calls…
var oldTimeout = setTimeout;
window.setTimeout = function(callback, timeout) {
var date = new Date();
console.log(("** " + timeout + "ms"), callback);
oldTimeout(function() { callback(); }, timeout);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment