Skip to content

Instantly share code, notes, and snippets.

@gthrm
Created October 2, 2019 16:17
Show Gist options
  • Save gthrm/7578262b9558f1d27386c0749f837101 to your computer and use it in GitHub Desktop.
Save gthrm/7578262b9558f1d27386c0749f837101 to your computer and use it in GitHub Desktop.
funcLol
function funcLol(params) {
this.timeOut ? clearTimeout(this.timeOut) : null
this.timeOut = setTimeout(() => {
console.log('post', params);
}, 1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment