Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 14, 2015 11:05
Show Gist options
  • Save unknownuser88/ff3c24b5b598a6b1346a to your computer and use it in GitHub Desktop.
Save unknownuser88/ff3c24b5b598a6b1346a to your computer and use it in GitHub Desktop.
var typewatch = (function() {
var timer = 0;
return function(callback, ms) {
clearTimeout(timer);
timer = setTimeout(callback, ms);
}
})();
typewatch(function() {
// action
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment