Skip to content

Instantly share code, notes, and snippets.

@chy4egg
Created August 8, 2018 11:48
Show Gist options
  • Save chy4egg/a6b755a0185d57baeb2980ffd72ad86d to your computer and use it in GitHub Desktop.
Save chy4egg/a6b755a0185d57baeb2980ffd72ad86d to your computer and use it in GitHub Desktop.
Function that delays something
export default (function fnDelay(){
var timer = 0;
return function(callback, ms){
clearTimeout(timer);
timer = setTimeout(callback, ms);
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment