Skip to content

Instantly share code, notes, and snippets.

@yocontra
Created November 15, 2014 01:15
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 yocontra/874b6e87abd9175173b9 to your computer and use it in GitHub Desktop.
Save yocontra/874b6e87abd9175173b9 to your computer and use it in GitHub Desktop.
var last = Date.now();
var lag = 0;
setInterval(function(){
lag = Date.now() - last;
last = Date.now();
}, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment