Skip to content

Instantly share code, notes, and snippets.

@estrattonbailey
Created January 25, 2016 14:50
Show Gist options
  • Save estrattonbailey/9225da0a3ddb0a002080 to your computer and use it in GitHub Desktop.
Save estrattonbailey/9225da0a3ddb0a002080 to your computer and use it in GitHub Desktop.
function delay(callback, ms){
var _timer = null;
return function(){
clearTimeout(_timer);
_timer = setTimeout(callback, ms);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment